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

Return to sender Submit button

New Here ,
Jun 12, 2017 Jun 12, 2017

Scenario:

Submitter fills out applicable section of a PDF. Very first text box # 1/field of entry provides for submitters name/email address identifier. After filling in form variables, submitter selects a “SUBMIT” button initiating an email to a processing team’s inbox. Once a recipient reviews/completes, etc, their section of the PDF, they have/can select a second “SUBMIT” button returning the form to the originator identified in text box # 1.

Question:
Is it possible to have the second “SUBMIT” button pull the email address from
the text box # 1 containing the originators email address?

TOPICS
PDF forms
1.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 12, 2017 Jun 12, 2017
LATEST

Yes!

Visit the following URL to generate a customized script:

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

  1. //Place this script in the buttons mouseUp JavaScript event 
  2. //http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345 
  3. //SUBMIT PDF FORMAT WITH ADOBE READER 
  4. var url = "mailto:" +  encodeURIComponent(this.getField("text box # 1").value) + "?subject=ATTN: Processing team&body=See attached file.&cc=&bcc="
  5. var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML 
  6. 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 12, 2017 Jun 12, 2017
LATEST

Yes!

Visit the following URL to generate a customized script:

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

  1. //Place this script in the buttons mouseUp JavaScript event 
  2. //http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345 
  3. //SUBMIT PDF FORMAT WITH ADOBE READER 
  4. var url = "mailto:" +  encodeURIComponent(this.getField("text box # 1").value) + "?subject=ATTN: Processing team&body=See attached file.&cc=&bcc="
  5. var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML 
  6. 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