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

Submitting form by email to include field value as CC

New Here ,
Jul 25, 2019 Jul 25, 2019

Copy link to clipboard

Copied

I have a text field (named DeptEmail), which automatically populates based on the selection from a dropdown field.  I want the text from DeptEmail to added as a CC when the submit form button is selected.

My inspiration came from the following link: https://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address and my current JavaScript looks like this:

// This is the form return email.  It's hardcoded

// so that the form is always returned to the same address.

// Change address on your form to match the code below

var cToAddr = "email@email.com";

//Now get the CC email address

var cCCAddr = this.getField("DeptEmail").value;

// Set the subject and body text for the email message

var cSubLine = "CRT Submission";

var cBody = "This CRT and attachments are hereby submitted.";

// Send the entire PDF as a file attachment on an email

this.mailDoc({bUI: true, cTo: cToAddr, cCC: cCCAddr, cSubject: cSubLine, cMsg: cBody});

The button works on every level EXCEPT it does not add the CC.  Any suggestions?

TOPICS
Acrobat SDK and JavaScript , Windows

Views

488

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

Community Expert , Jul 25, 2019 Jul 25, 2019

The name of this parameter is cCc, not cCC.

Votes

Translate

Translate
Community Expert ,
Jul 25, 2019 Jul 25, 2019

Copy link to clipboard

Copied

The name of this parameter is cCc, not cCC.

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 ,
Jul 25, 2019 Jul 25, 2019

Copy link to clipboard

Copied

Wow!  I never would have caught that.  I'm seriously so thankful for this support forum!  Thank you!

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
Community Expert ,
Jul 25, 2019 Jul 25, 2019

Copy link to clipboard

Copied

You probably copied the example from the documentation, where it's unfortunately incorrect...

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 ,
Jul 25, 2019 Jul 25, 2019

Copy link to clipboard

Copied

LATEST

That I did, unfortunately.

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