These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

form emailing

tkpltc
Registered: Oct 27 2007
Posts: 4

I am using acrobat 8 professional. I have created a form to put on my website. Is there a way to have the complete form and not just the data be submitted to me via email? Or is there a way to put a save button on the form and they can attach the form to the email? It is to time consuming to have to save the email data, open adobe, import the data and then print the form. Thanks.

Tammy Arnado
Licensed Tax Consultant, E.A.

My Product Information:
Acrobat Pro 8.0999999999999996447286321199499070644378662109375, Windows
pddesigner
Registered: Jul 9 2006
Posts: 858
Create a button and add this JavaScript to the button mouse up action.

Edit the email addresses and subject.


if (typeof(app.viewerType)!="undefined")
if(app.viewerType == "Reader")
{
var msg = "You must use Adobe Reader 7.0 or higher to send the application back to us.Visit [url=http://www.adobe.com/products/acrobat/readstep2.php]http://www.adobe.com/products/acrobat/readstep2.php[/url] to download the latest version.";
app.alert(msg);
}
else
{
this.mailDoc(true, "management [at] comany [dot] com", "supervisor [at] company [dot] com", "ceo [at] company [dot] com",
"Employment Application Form");
}

My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.