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

Submitting form by email to include field value as CC

New Here ,
Jul 25, 2019 Jul 25, 2019

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
724
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

correct answers 1 Correct answer

Community Expert , Jul 25, 2019 Jul 25, 2019

The name of this parameter is cCc, not cCC.

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

The name of this parameter is cCc, not cCC.

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

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

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

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

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

That I did, unfortunately.

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