Print form as PDF and attach to email button?
Hello, i did a quick search but wasnt satisfied with the language i found regarding my question.
I have a fillable form i wish to send with email via a button on the form using javascript.
When i do this now, acrobat attaches a live fillable file, and not a printed pdf.
This is for a class certificate, and must be sent as a printed pdf and not the editable form.
Can someone please help provide the java code to accomplish this? Its more complex than i can work out on my own.
Thanks for the assistance!
var cToAddr = "email@address.here"
var cSubLine = "Your Certificate of Achievement"
var cBody = "Thank you for your recent participation at our Continuing Education Session.\r" + "Your Certificate of Achievement is enclosed.\r \r" + "If you have any questions, please do not hesitate to reach us."
this.mailDoc({bUI: true, cTo: cToAddr, cSubject: cSubLine, cMsg: cBody});
