Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Can I upload a fillable PDF form to my website and allow people to email it to me directly from the form?

New Here ,
May 31, 2017 May 31, 2017

Can I upload a fillable PDF form to my website so people can fill it out and email it to me directly from the form?

TOPICS
PDF forms
2.5K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
Enthusiast ,
Jun 30, 2017 Jun 30, 2017
LATEST

Yes, you can add a button with a mouse up javascript event hands off the PDF to the default email program.

Note: Adobe Reader is required to submit the PDF form

Check out the following web tool to help you generate the button action script:

fdftoolkit.net/email-pdf-mailto-generator.aspx

Here's a javascript example:

//Place this script in the buttons mouseUp JavaScript event

//http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345

//SUBMIT PDF FORMAT WITH ADOBE READER

var url = "mailto:you@domain.com?subject=SUBJECT&body=BODY&cc=&bcc=";

var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML

this.submitForm({cURL:url,cSubmitAs:submitAs});

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jun 30, 2017 Jun 30, 2017
LATEST

Yes, you can add a button with a mouse up javascript event hands off the PDF to the default email program.

Note: Adobe Reader is required to submit the PDF form

Check out the following web tool to help you generate the button action script:

fdftoolkit.net/email-pdf-mailto-generator.aspx

Here's a javascript example:

//Place this script in the buttons mouseUp JavaScript event

//http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345

//SUBMIT PDF FORMAT WITH ADOBE READER

var url = "mailto:you@domain.com?subject=SUBJECT&body=BODY&cc=&bcc=";

var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML

this.submitForm({cURL:url,cSubmitAs:submitAs});

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines