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

emailing a signed form

New Here ,
Jan 30, 2017 Jan 30, 2017

Copy link to clipboard

Copied

Hi community

I have been tasked with creating a form that needs various signatures at various stages.

once each person has signed their section I would like to have the formed saved and automatically emailed to other parties.

I have seen that the form saves as soon as it has been digitally signed, but I do not know javascripting.

Can someone kindly help me out with the script to email the form to a number of email addresses, with a subject of, "Status Update" and a body text of, "check status update"

I thank you all in advance for any help offered

Steve

TOPICS
PDF forms

Views

523

Translate

Translate

Report

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

correct answers 1 Correct answer

Adobe Employee , Jan 30, 2017 Jan 30, 2017

Hello Steve,

You can associate this java script with every signature box when it is filled :

this.mailDoc({cTo:"<Email Address>", cSubject: "Status Update",  cCc: "<ccAddresses>", cMsg: "check status update"});

Let me know if it solves your issue.

Regards,

Gaurav

Votes

Translate

Translate
Adobe Employee ,
Jan 30, 2017 Jan 30, 2017

Copy link to clipboard

Copied

Hello Steve,

You can associate this java script with every signature box when it is filled :

this.mailDoc({cTo:"<Email Address>", cSubject: "Status Update",  cCc: "<ccAddresses>", cMsg: "check status update"});

Let me know if it solves your issue.

Regards,

Gaurav

Votes

Translate

Translate

Report

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
New Here ,
Jan 31, 2017 Jan 31, 2017

Copy link to clipboard

Copied

Thank you very much Gaurav

Votes

Translate

Translate

Report

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 ,
Jan 31, 2017 Jan 31, 2017

Copy link to clipboard

Copied

You can set which fields are locked after the field is signed in the signature's properties window. Once you get this right for each signature (1,2,3), you can add a JavaScript action in the signature's properties to send the form to the next designated signer. The script can send the form to various TO, CC, BCC recipients of your choice or dynamically retrieve the email addresses from form fields.

The following site may help you generate the mailto JavaScript command:

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

Votes

Translate

Translate

Report

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
New Here ,
Jan 31, 2017 Jan 31, 2017

Copy link to clipboard

Copied

LATEST

Thank you very much

Votes

Translate

Translate

Report

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