
Using javascript I need a script to AutoFill the Subject in email submit button. using this method app.alert("Launching your e-mail program.", 3, 0)
this.mailDoc(
false,
"", "", "",
"Travel Authorization",
"Please review this Travel Authorization. Thank You"
);
or this method
this.submitForm("mailto:mm@mycom.com?"
+ "&cc=gg@mycom.com&bcc=john@mycom.com"
+ "&subject=good news"
+ "&body=The order is in!"
);
My Product Information:
Acrobat Pro 8.1 / Windows
Offline

Try this script on the Submit button (mouse Up).
this.mailDoc({
bUI: false,
cTo: "recipientEmailAddress@theirIP.com",
cCC: "copyToEmailAddress@theirIP.com",
cSubject: "Travel Authorization",
cMsg: "Please review this Travel Authorization. Thank You."
});
Offline

Oh my fault I forgot I need the subject line populated from a filled text field.
So a text field that user fills in like Emp.Name this goes into the subject line.
Offline
AcrobatUsers.com >> User Groups • News • Events • Articles • Blogs • How To • Resources • Member Log in