I have the following script on a submit button in a form I created with Acrobat Forms 8.
this.submitForm("mailto:recipient,,?"
+ "&subject=Approval Request"
);
The script works fine except that the digital signature clears by the time it gets to the recipient. Is there a way to specify, using javascript, that I want it to send the entire PDF and not an FDF?
this.mailForm(false, "name@emailaddress", "", "", "Put the subject line here", "Put the message here");
This should attach the PDF file to the email.
StevenD