I have a form on my website that I would like users to fill out, save and email back to me. The standard email submit button sends the data as XML, however I would like the entire form returned instead. Is this possible, and if so, how?
Thank you,
Brian
Insert this JavaScript code for the Mouse Up button action in the Submit button. Change the email addresses as necessary. For only one receipent, remove the cc addresses but leave the quotes.
if (typeof(app.viewerType)!="undefined")
if(app.viewerType == "Reader")
{
var msg = "You must use Adobe Reader 8.0 to send this form. You can download Adobe Reader 8 at: [url=http://www.adobe.com/products/acrobat/readstep2.php";]http://www.adobe.com/products/acrobat/readstep2.php";[/url]
app.alert(msg);
}
else
{
this.mailForm(true, "yourEmailAddress [at] yourCompany [dot] com", "ccEmailAddress [at] yourCompany [dot] com", "other_cc_emailAddress [at] yourCompany [dot] com",
"Your Form Title");
}
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.