Edit Submit Email Message

I've seen other people post this question, but cannot find an answer.  When a user completes and submits a form created in LiveCycle and distributed as a saved file (as opposed through Adobe) an email is generated that has the completed form attached and the following in the body of the email:
Instructions to add this form to a responses file:
1. Double-click the attachment.
2. Acrobat will prompt you to select a responses file.
THE PERSON FILLING OUT THE FORM DOESN'T NEED TO SEE THIS! How can the body of the message be changed to read something like, "Thank you for accepting my information, I look forward to seeing the results." or ANYTHING but the above, which is just confusing to the person completing the form??
Thanks - I have spent a couple of hours researching this and can find no answer.
TK

No problem Terry!!
Below the third email button is a textfield that displays the script. You can scroll up and down and examine it:
This example is a bit involved, so I will try and break it down into sections:
The fields
You can see the textfields on the form for the name, email address, message, etc. The script looks at the value in these fields and uses this in the email script.
Setting up the variables
It can help to set up script variables. These are temporary holding points for values. These only exist for that script. For example vEmail, which will hold the email address.
// First check if there are null values, then construct email using script
var vEmail;
var vSubject;
var vBody;
var vName;
var vCC = "";
var vFormat = subFormat.rawValue;
var errorMessage = "You have not provided enough information:";
Checking the textfields and preparing a custom error message
The next section is a bit long. It basically works through all of the fields to make sure that they are not null. If they are then it adds to the error message. Otherwise it sets the value of the relevant variable to the value of the associated field. You will see the same approach being used for each field.
// Check email address field and build error message
if (emailAddress.rawValue == null)
errorMessage = errorMessage + "\n - please provide an email address.";
else
vEmail = emailAddress.rawValue;
// Check if there is a cc email address inputted
if (ccEmail.rawValue != null)
vCC = "&cc=" + ccEmail.rawValue;
// vCC is put at the end of the mailto string because it starts with a &
// Check subject line field and extend error message
if (subjectLine.rawValue == null)
errorMessage = errorMessage + "\n - please provide a subject line.";
else
vSubject = subjectLine.rawValue;
// Check your name field and extend error message
if (yourName.rawValue == null)
errorMessage = errorMessage + "\n - please provide your name.";
else
vName = yourName.rawValue;
// Check message line field, if null build a custom body message
if (messageLine.rawValue == null)
vBody = "Hi " + recipient.rawValue + ", \n\nThis email contains our submission in " + subFormat.rawValue + " format. \n\nPlease double click the attachment to open our submission. \n\nRegards, \n\n" + vName;
else
vBody = messageLine.rawValue;
Get ready to send email
We are nearly ready to send out the email. The last if statement checks that the minimum fields are not null. If any of the fields are null, then it displays the error message. Note that in the if statement the pipe (||) is JavaScript for OR.
// If fields required for script are null, warn user and do not initiate email
if (emailAddress.rawValue == null || subjectLine.rawValue == null || yourName.rawValue == null)
     xfa.host.messageBox(errorMessage, "Sending an email", 0, 0); // Send out a custom error message if any of these fields are null
else
     // Everything is OK, send email
     event.target.submitForm({cURL:"mailto: "+ vEmail +"?subject=" + vSubject +"&body=" + vBody + vCC,cSubmitAs:vFormat,cCharset:"utf-8"});
That's it!!!!
The last line is the event.target.submitForm, which follows strict syntax for the variables. You can see that we are using the variables for the values.
This script is in the click event of the submit button. You can view the script in the Script Editor. If this is not visible at the top of the LC Designer window, then you can access it from the Windows menu. If it is only one line high, then grab the bottom bar and make it bigger. You need to see about 10 lines at a time.
The script is a bit involved, but don't be put off, there are a few methods here which are worthwhile exploring.
Come back if you need help,
Niall
Assure Dynamics

Similar Messages

  • Edit Submitted Email Messages

    I've seen other people post this question, but cannot find an answer.  When a user completes and submits a form created in LiveCycle and distributed as a saved file (as opposed through Adobe) an email is generated that has the completed form attached and the following in the body of the email:
    Instructions to add this form to a responses file:
    1. Double-click the attachment.
    2. Acrobat will prompt you to select a responses file.
    THE PERSON FILLING OUT THE FORM DOESN'T NEED TO SEE THIS! How can the body of the message be changed to read something like, "Thank you for accepting my information, I look forward to seeing the results." or ANYTHING but the above, which is just confusing to the person completing the form??
    Thanks - I have spent a couple of hours researching this and can find no answer.
    TK

    Thanks, Jasmin:
    I am using a Regular Button, Control Type = Submit. I am distributing the form manually, by saving the form, emailing to the user who fills it out and hits the submit button.  When they do, an email is generated in their Outbox that has the offending message in the body of the email.  I want to have a different email message in the body of the user's email.
    Terry

  • HT3228 how can I store and edit email messages just from my Iphone?

    I want to save and edit many email messages to work towards writing a book. I need to see many messages at one time in order to organize my material.  How can I do this?  Please answer in easy to understand language.

    i have tried to do this but when i log in it tells me there is a level 4 game on this device not my level 25 game. any suggestions

  • Edit Email Messages in Mail.app

    Does anyone know a way to edit an email message already received in mail.app? I found this to be a useful feature of Eudora and even Outlook, but it doesn't seem to be in Mail.app.
    Thanks for any help. - M.

    Thanks for the replies. But that link does not solve the problem: it just provides workarounds.
    I would like to know if there is any way to edit a message that has been received in my mail.app program.
    As for any legal issues, I find them to be not very compelling. Although it is true that courts now admit emails into evidence as if they were any other document, that does not suggest that they should not be modifiable. That courts admit such electronic documents into evidence certainly imposes no burden on me, the email receiver, to maintain the email's original format. Moreover, there is nothing improper about making programs or add-ons that facilitate the making of such changes in emails unless and until Congress decides to take up the issue and make it a crime to modify received emails.
    Since that has not happened, and is unlikely to in the near future, I would still love it if someone could provide either instructions or some mail.app extension that allows one to edit received emails.
    Thanks for any help! - M.

  • Using MS Word to edit email messages!  Is this even possible?

    I know this may sound a little weird, but I am a newer user of Macs and Mail. I was curious if there is a way to use my version of Word for Macs to edit my email messages. I liked using this feature with Outlook, but I have not figured out how to accomplish this with Mail.
    I want more than just Mail underlining my word if I mispelled it. I want it to auto correct or something. I would like Mail to also automatically capitalize the first word in a sentence if I fail to or miss it. I don't even know how to get bullet points to appear within email messages. I miss this feature with Mail, can someone help?
    iMac   Mac OS X (10.4.8)  

    Sure, just open up a new document from within MS Word and when you are ready, copy and paste the text into the body of an email message and send it. This takes about two seconds to do: Command-A to select all the text, then Command-C to copy, then Command-V to paste.
    As far as I know, there is no option to set up a different editor in Apple's Mail.app program; however, that option might be available in Entourage which comes with Microsoft Office 2004 for the Mac.

  • Can I edit the email created to send a PDF form back to me when a user clicks on Submit?

         I created several PDF fillable forms for our users to request services and send back data needed to deliver those services. They are simple forms, and users will click on Submit to return to a mailto: address.
    My question is about the email message that is auto-created when the user clicks on Submit. I can't find any config window to be able to edit the message in the body of the email. The message reads:
    Form Returned: 2014PrintingRequestForm.pdf
    The attached file is the filled-out form. Please open it to review the data.
    Is there any way to edit this message?

    majende,
    Adobe Reader for iOS does support a Submit button.
    (a) Button action to submit an entire PDF document via email
    (b) JavaScript submitForm to Adobe FormsCentral
    Do you use the desktop version of Adobe Acrobat to create a PDF form?
    For option (a)
    Add the "Submit a form" action to your Submit button.
    Enter "mailto:" (including a colon) followed by email recipient(s).  Please add a comma between two email addresses.
    Example: [email protected], [email protected]
    Select "PDF The complete document".
    This particular type of PDF form will work with Adobe Reader desktop and mobile products (including Adobe Reader for iOS and Android).
    In Adobe Reader for iOS, a user can do the following steps to submit the particular type of PDF form.
    Fill out the PDF form.
    Tap the Submit button in the PDF form.
    Select "Share Original Document" or "Share Flattened Copy" from the Share File dialog.
    Adobe Reader for iOS will automatically fill in the email address(es) that you specified when you created the PDF form.
    Tap the Send button in the upper right corner.
    Adobe Reader for iOS will send the PDF form as an email attachment via Apple Mail (the default mail app for iOS).
    Please let us know if you have additional questions.

  • Edits to To Dos associated with email messages don't persist

    Here are the steps to replicate this problem within Apple Mail (the latest version - 4.3 on OS X 10.6.4):
    1) Select some text in an email message, and click the to do button in the toolbar to turn it into a to do. This to do now appears in the list of to dos visible when you click 'To Do' under 'Reminders' in Mail's left hand sidebar.
    2) Return to the email message, and edit the to do visible at its top. The to do text has changed when you view it via the email message, but if you again look at the list of to dos via Mail's left hand sidebar it has not - only the original to do text is visible. And if you then return to the email message, the do has returned to its original text.
    Any help/pointers for investigation much appreciated

    Sorry no help just noting that I have excately the same problem. However I am still on Leopard with Mail V3.6. I suspect one of the recent "security" updates screwed the way how Todo notes are shared with Mail and Ical...
    I can also edit the Todo message with Ical and the changed text appears instantly in Mail. Just editing within a mail-message with the little yellow box above is not working. However I can change priority and due-dates but not the text....
    weird stuff.... anyone has an idea? Thanks. Emilia

  • Customizing the Subscription-service email message

    Hello, just wondering if anyone knows how I could go about customizing the Subscription-Service email message?  The current default looks like this:
    From: Subscription-Service 
    Sent: Thursday, September 18, 2008 7:32 AM
    To: Some One
    Subject: Subscription "Daily Revenue Compare Report (L2)"
    Subscription Daily Revenue Compare Report (L2) Edit Subscription | Cancel Subscription
    A new Daily Revenue Compare Report (L2) is now available for viewing.  If you have any questions regarding this report, please contact Some Group.Thanks.
    DAILY_REV_COMPARE_L2_20080918.XLS in folder documents > Public Documents > BI Broadcaster > Daily Revenue Compare Report (L2) created by Some One on Sep 18, 2008 9:31:45 AM. (Details)
    I would like to change the "From:" description as well as the bold section of the text above.
    Thanks.

    Hi,
    You can see this document from SDN for [Customizing Notifications,Path-Specific Notifications in KM|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/90626697-0901-0010-2ca7-86e2a50ce70d]
    Hope this information could be helpful for you!
    Regards,
    Lubi

  • How can I dial a phone number from an email message directly

    How can I dial a phone number from an email message directly,
    But even before the selection i will change or correct the number?
    If I copy the number in the notebook, all spaces are filled with % signs.
    When I dictate SIRI the number I get the answer: I do not know the number
    If I copy the number in the phone selection (above) the number can not be edited afterwards.

    You can dial a number appearing in an email by tapping on it.
    But if you need to correct the number first you cannot edit a received email.
    To edit the number tap on the forward symbol and when the draft comes up you should be able to correct the phone number, copy it and paste into your Phone App. Then delete the forward email without sending it.

  • ORA-20001: Maximum number of email messages per workspace exceeded

    Greetings. We are running APEX 4.1.1. I have an application where we have to send out email messages to a list of emails. Currently there are 2469 email addresses. Originally we put the email addresses in the BCC but we received an error that we had exceeded the size limit of the BCC. So we modified our procedure to send one email at a time, in a loop.
    Now we are receiving the following error message:
    "ORA-20001: You have exceeded the maximum number of email messages per workspace"
    Has anyone else run into this issue? What is maximum number or email messages per workspace? Is it a limit per day, per session?
    We have not added emails to this table since last year, so the maximum number of email messages allowed may have changed recently?
    I did find this Forum post that addressed the issue but no one responded:
    How many mails i can send at a time per day using APEX mail system?
    Thanks,
    John

    Hi jfosteroracle,
    You are getting the error may be the following reason,
    Check the following,
    Login as ADMIN and Goto -->Manage Instance-->Instance Settings--> Mail-->Maximum Emails per workspace
    Actually this number denotes the Number of mails can be sent per 24 hour for the workspace,It may exceeded.
    It may be the reason.
    Thank you.     
    Regards,
    Gurujothi
    Edited by: Gurujothi on Jun 27, 2012 5:54 AM

  • How can I edit received emails in Apple's Mail app? Also, delayed sending of replies?

    I finally switched to Apple's Mail app 4 months ago after 12 years of using Eudora (because of the inevitable - that Lion or Mountain Lion, when I upgrade, will not support the foundation architecture that Eudora is built on).
    There are (AT LEAST) two functions available in Eudora that I very much want to do with Mail and currently cannot figure out how to do. I'm hoping that someone knows of a plugin that will do these functions, or will write such a plugin, or will tell me how to make this suggestion to Apple to include in a future update.
    1) I want the freedom to EDIT a received message - to correct a subject line, or make it more relevant for my reference, or add a key word/prefix to the subject for future searching and archiving, along with being able to edit the message itself, so that it is the equivalent in a book (or an eBook) of adding comments/marginalia for future reference. (In my opinion, once I receive an email message, it is MINE - so I should be able to do what I want with it (which includes the responsibility of not rewriting a message to resend to appear as deceptive or fraudulent).
    2) Write up a draft email, that would reside in the "Send" folder of Eudora, and for which I could select a time in the future that it should be mailed (dependent on the fact that Eudora would be running at that time, else it would send the next time Eudora was opened. I would LOVE to be able to do that in Apple Mail. Rationale: Often, when I receive an actionable email, I want to respond at that moment while the subject is fresh, but due to priorities or scheduling reasons, I don't want the response to go out just then. Maybe I want the response to go out after an event three days from now, but I want to process the message right now, and I don't want to have to remember to make a ToDo item to remind me in 3 days.

    Thanks, a brody.
    That tip takes me further down the field. And, I am able to do stuff like indent and change font color of my comments which is very helpful.
    However, the big disappointment is that by dragging the original message to the Draft mailbox and then back to the original one after the edits is that it removes the original sender's name and puts mine in along with changing the heading info on date and time. That is, it creates a new message, rather than allowing me to modify the original one to suit my needs.
    All the same, this was a very helpful tip. Thanks again.
    Anyone know of a plugin?..............or two?....

  • Is there a way to delete all my email messages in my inbox at once?

    Is there a way to delete all my email messages in my inbox in one move, rather than selecting one at a time, then deleting?

    You CAN delete all your email.  Here's how: >> Open Inbox >> Edit  >> Check/select the top message; it will highlight the move button. >> Press and hold the move button and uncheck the message that you had checked earlier. >> Lift all your fingers off from the ipad screen and leave it alone. Wait until all your messages pile up on the right hand portion of the screen (in ipad); iphone will give you the actual number of emails it has selected for the action. Now they are just waiting for your command to be moved ALL at once. >> Choose trash to delete all of them or any other folder where u want to move them, like one piece. Remember this will replicate your action on the server so you will ACTUALLY move them or delete them on the server and not just the ipad. Once you have moved all messages to the trash you can either leave them there for the scheduled cleaning or empty it right away by doing this: go to trash folder and touch Edit. The Delete All button shows up at the bottom of the screen. Hit it! You’re done! If you do not see the effects of your actions on the server make sure you have enabled your email accounts for such actions.

  • Exchange 2013 SP1 users not receiving quota warning email message

    Hi,
    We are on Exchange 2013 SP1 and Exchange 2010 SP3 co-existence mode and currently migrating users from Exchange 2010 to 2013.  We have noticed that users are not receiving email message when their mailbox quota warning when its near to maximum limit.
    If I log in via OWA it shows the notification (Pop up) that your mailbox is almost full but no message received in email.  Most of the users do not log into OWA but only uses Outlook.
    It looks like other people are also seeing this similar issue but I am unable to find any solution for it.
    How users will know if their mailbox is almost full if they are traveling and only using Mobile phone for emails to send and receive.
    Thanks,
    Raman

    Hi Thanks for your response. Our Quota is set on Database level. I am seeing these event ids as well.
    Log Name: Application Source: MSExchangeIS Date: 12/31/2014 10:07:12 PM Event ID: 1077 Task Category: MAPI Level: Warning Keywords: Classic User: N/A Computer: Exch2013mail01.company.com Description: The mailbox e3d48b23-0740-46ab-89f7-3b035dacf28f on database
    326f0997-4fe5-4b31-873b-6a3396e7a91c is approaching its storage limit. A notification has been sent to the user. This warning will not be sent again for at least twenty four hours.
    ========================
    Log Name: Application Source: MSExchange Store Driver Submission Date: 12/31/2014 10:07:12 PM Event ID: 1012 Task Category: MSExchangeStoreDriverSubmission Level: Error Keywords: Classic User: N/A Computer: Exch2013mail01.company.com Description: The store
    driver failed to submit event 8237691 mailbox e3d48b23-0740-46ab-89f7-3b035dacf28f MDB 326f0997-4fe5-4b31-873b-6a3396e7a91c and couldn't generate an NDR due to exception Microsoft.Exchange.MailboxTransport.StoreDriverCommon.InvalidSenderException at Microsoft.Exchange.MailboxTransport.Shared.SubmissionItem.SubmissionItemUtils.CopySenderTo(SubmissionItemBase
    submissionItem, TransportMailItem message) at Microsoft.Exchange.MailboxTransport.Submission.StoreDriverSubmission.MailItemSubmitter.GenerateNdrMailItem() at Microsoft.Exchange.MailboxTransport.Submission.StoreDriverSubmission.MailItemSubmitter.<>c__DisplayClass1.<SubmitNdrForFailedSubmission>b__0()
    at Microsoft.Exchange.MailboxTransport.StoreDriverCommon.StorageExceptionHandler.RunUnderTableBasedExceptionHandler(IMessageConverter converter, StoreDriverDelegate workerFunction).
    Raman

  • New to Adobe Forms and need help with Submit Email button

    I am new to Adobe Forms in Windows.  I created a form with a submit email button.  When users try to click the button, the message is operation cannot be completed.  My test user has Adobe Reader 9 installed.  I'm at a loss as to how to resolve the issue.  Please assist.  TIA!

    Three different aspects
    1. Set the form up to submit the data (XML or FDF), not the full PDF. You can import the data to the PDF on your end.
    2. You can turn on Extended Reader Rights, but then limit the use/users to 500 by the EULA. The applicability of this option depends on your intended application. In a small office, it would be fine. For general web use you would likely exceed the limit and be in violation of the EULA.
    3. There may be an e-mail problem, one reason that e-mail is not recommended for form submission (even if the manual discusses it). Again, in a controlled environment like an office it will probably work fine, but in a web setup it is best to use a web script. There are 2 problems with e-mail that both depend on the client system (YOU have no control, but will be blamed in any case). First, the client machine has to be set up as an active MAPI client. Many folks do not have this on. Second, some e-mail clients treat PDFs like text and the result is a corrupt e-mail submission, even if it makes to you.
    If you have the possibility of web submission, do it. I suggest only having the form data submitted and not the form.

  • Since yesterday clicking on a link in an email message firefox doesn't open a new tab with that particular website.

    I am using Firefox 3.6.13 on a 2009 Mac Pro computer (OSX 10.6.6). Up until yesterday when I clicked on a link in an email message Firefox opened a new tab and switched to that particular website. Since yesterday Firefox doesn't do that. I have Firefox set up as my default browser. I tried to change my default browser to Safari, then everything worked fine. Clicking on a link in a message a new tab has opened in Safari with that particular website. My problem is, that I like Firefox a bit more than Safari and I'd like to know what to do to restore that functionality to Firefox.

    It's a good idea to try disabling Flash completely and see whether the problem continues. If it does, then my guess is incorrect. To test that, open this tab:
    orange Firefox button (or Tools menu) > Add-ons > Plugins category
    Here you can locate Shockwave Flash and use the Disable button. Keep this tab open for easy access when doing your test.
    ''If your test confirms that Flash is causing the problem,'' then the other thread has two suggested workarounds. The first is simple to understand (keep some Flash running at all times) but may be inconvenient to do all the time. The second is trickier because it requires editing a file in (or creating and then dragging a file into) a system folder. Fortunately you only need to do it once.

Maybe you are looking for

  • How do I reinstall the osx on a second hand macbook pro?

    My partner recently purchased the latest release of the Macbook Pro and gave me his old one. The problem is that it is still tied to his info and passwords and I would like to somehow completely wipe the system and reinstall it afresh. I have his pas

  • Creative Suite 5.5 Design Premium installation

    Hi, I have just start my new iMac computer. Downloaded CS5.5 Design Premium fine. When it was close to finishing the installation there was an issue with closing Safari which I did and also something else which looked Safari related but nothing else

  • How to get  ATI X1300 to 1600x1200 on DVI?

    In Solaris 10, the ATI RADEON X1300 card is supported only by the Vesa driver and not by the Radeon driver in Xorg. Now, using the analog output of the X1300 you can get a monitor resolution of 1600x1200 but if you use the DVI output, it drops back t

  • Screen Tips for Hyperlinks in PPT 2007 not working in Presenter7

    I have numerous hyperlinks in my presentation, each with a Screen Tip. Unfortunately,none of these are being carried over in the translation to Presenter7. Can anyone help? thanks Grayley

  • NOT ABLE TO RECLAIM STORAGE USED BY XMLTYPE COLUMN

    Since we are on Oracle 9i, the 10G solution DBMS_XMLSCHEMA.CopyEvolve() is not available, we are trying to do it by ourselves. see the doc, Re: how to make xml schema change when there are existing records in the ta However, our requirement is differ