Copy link to clipboard
Copied
I need help creating a submit button that sends the email to the email address that are filled in to the form on my final page there are a total of 4 email address the field names are "Email, Email_2, Email_3, Email_4" I want the submit button to send to those email address can someone help me?
Copy link to clipboard
Copied
You can add emails with a semi colon in Email Address field. Attached image for reference.
Once you add more than one email and hit after that Submit by Email button, it would send the emails to all email addresses you added.
I hope this helps.
Please accept this as solution once it would worked for you.
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
This image is from LiveCycle Designer, not Acrobat, and is not relevant to this question.
Copy link to clipboard
Copied
You can do it using this code:
var targetEmails = this.getField("Email").valueAsString ";" + this.getField("Email_2").valueAsString ";" + this.getField("Email_3").valueAsString ";" + this.getField("Email_4").valueAsString;
this.mailDoc({cTo: targetEmails});
Copy link to clipboard
Copied
I need help to add/select dependent cc list with managers name and email addresses based on Location selection(I made this as a dropdown button with 6 locations) and is it possible user do not need to select manager, it can be hidden and select cc email based on location. And I also made a submit by email button ( by adding HR email as the email needs to be sent to HR in To everytime the form would be submitted.)
I tried by all ways to add javascripts on mouseiup and click button ( after adding new submit button in form). It did not work for me.
I am working in livecycle designer(preferred) or can work in acrobat also.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now