I created a sample that deals with lots of different email issues. You can tackle this in many different ways. Have a look at the sample and see if it meets your purposes.
Paul
Thanks for the fast response Paul.
Ok I've successfully managed to edit the subject line as follows
Submit Button>Submit Tab>Submit to URL: mailto:[emailaddress]?subject=
However, from here ... how do I make the subject = [text]+TextField1 < example > subject would read - Request for [Jimmy Smith] >[textfield1]
Sorry if I'm making this seem more difficult than it is.
Many thanks for any help given.
You cannot do it in the URL of the button. That will not interpret commands it is just a raw URL. If you look at the last XFA example with the hidden button you will see some javascript behind the button theat you press. This code sets th eURL programmatically where I can read other fields and make up a URL.
Paul
Paul,
Due to me needing this form to be submitted in PDF format, I can't use the Submit by Email button. How do I go about viewing the Javascript code and editing it to suit my needs in LC Designer 8.0?
Again, as a novice, I apologize if this is trivial knowledge, but JS is new territory for me.
I really do appreciate you taking the time to explain this to me.
Thanks!
You might be better off using the Acroform method in that document ....the script is behind click event of the button. In Designer, highlight the button. Then under window ensure that the script editor is opened. It should be on top of the form display but below the menu bars. On the left side is a dropdown (called Show) that allows you to pick the event. Anything that has script behind will show with an *. Choose the click event. The code shodul be there.
Paul
Ok, now we're making some progress, but now I have a syntax error. (see attached screenshot)
I'm so close I must be missing something right under my nose. Any suggestions?
Your time and patience is appreciated.
You wopn't be able to change the filename unless you save the file first. Here is an example of a number of ways to deal with parts of the email programatically.
Paul
Thanks Paul. I think I have a button that will work from your great attachment. On the saving issue. Do you have any thoughts on any code that might auto save 'behind the sences so to speak' to a users temp file and then pick up the email submit without the user having to save it and then go get it to email?
Thanks again for your expertise!
Chris
If you are using an email client then the autosave is happening automatically for you. If you are using a web client for email then you can have a button that will save the form but you cannot automatically do this. You can bring up the dialog for the use but you cannot choose a filename and save without th eusers knowledge - that woudl be a breach of security!
Paul
I found this thread very informative, however, the examples given don't seem to detail the same issue I'm having. Similar to the first example, I have a PDF from with a button at the bottom that says "Click here to Submit Form" and on the back side it is a simple Mailto:email@email.com The document Paul provided helped me see where I can specify the subject using Java but what syntax do I input to call the contents of a field from the form as the first portion of the subject?
If there if a Field on my Form called "ApplicantLastName" I'd like for the Contents of that filed to be part of the Subject of the email sent so the Subject would ultimately be "Doe-NEW-Access-Request" where the word "Doe" is the content of the "ApplicantLastname" field.
This may have been covered in this thread and I'm just blind and not grasping it, if so please feel free to beat me with a wet noodle and point it out....Any help would be appreciated.
In that example file the 3rd one puts a users name (from a Dropdownlist) into the command. You can use the same technique to manipulate the subject. It woudl be something like this:
RealEmail.event__click.submit.target =
"mailto:" + DropDownList1.rawValue + "?subject=" + ApplicantLastName.rawValue + "-NEW-Access-Request";
Paul
With some other help in the forums the following code behind the button seems to do what I need it to. The only issue I'm having now is getting this email button to actually attach the PDF form to the email. I'm also trying to get it to pull data from two fields (Applicant Last Name and Applicant First Name) but the syntax eludes me....
topmostSubform.Page1.Submit_Button::mouseUp - (JavaScript, client) /*var myFieldData = this.getField ("APPLICANT LAST NAME"); var mySubjectName = (myFieldData.valueAsString); app.mailMsg(false, TEST@TESTEMAIL.COM, "", "", "Access Request for"+mySubjectName, "Please process the attached form for acess.");
Here is a sample form, now the subject change test button I created won't even work and I'm not sure why...
You are mixing Acroform scripting with XFA scripting ....here is a revised copy.
Paul
I have Acrobat 9.0 installed and am using the Adobe LiveCycle to create my form. The form attached shows the field I want to attach to the subject line in an email when it is submitted.
Thanks for your help. I am very new with Adobe LiveCycle.
Aaron
I have modified your sample. The actual button that does the email cannnot have code on it so we use another button (Real Email) and make it invisible once you get this to work. Then the button that you have has the code on it. The 1st line will set the submit URL for the hidden button and the 2nd line will click the hidden button.
Paul
I have the PDF now. Do I need to change any of the coding do get it to work? When I hit the submit button it brings up a dialog box asking if I use a local email (i.e Outlook) or an Internet Service. When I click the local email it does not do anything.
Thanks,
Aaron
Is it possible to use PDF as the "Submit as" type? My button doesn't appear to do anything when selecting PDF as the type. Setting it to XML or XDP the dialog box pops right up when clicking the submit button. I've even tried your untitled1_pauls.pdf file.
Thanks.
Figured it out. Opened the form outside Livecycle and it works. Just didn't work in "Prevew PDF" inside livecycle.
I have attached the actual document I am working on for you to look at. When I click submit it gives me the message: couldn't post data to '.
Thanks,
Aaron
Two issues .....you have the language set as FormCalc but the code is javascript. Change the language to Javascript (top right hand corner of the script editor) and you have the code set to run at server and not at client. Set it to client ....right beside the language selection in th etext editor.
Paul
Paul,
I added a required field to your form to make sure it isn't my form doing something wacky.
The only buttons on your form that checks the field (I get a message when empty) is the first two buttons - they are actually submit buttons. I think the other buttons aren't true submit buttons, so they don't validate.
Is there a way to get them to validate? Thanks.
Now I understand what you mean .....if you are using a true submit button then the validations will run automatically. If you are using a button for programming and that is calling the submit button then you will have to fire the validations yourself. The command to do this is:
if
(form1.execValidate()){ SubmitButtonName.execEvent("click") }
else {
app.alert("You have validation errors...");
}
where form1 is the root node of your form. If the validations run and there are no errors then it will return a true value and the submitbutton will be pressed. If there are errors then the message box will appear. and the submit will not occur.
Hope that helps
Paul
North America
Europe, Middle East and Africa
Asia Pacific