Skip to main content
amandas83818402
Participating Frequently
July 25, 2019
Answered

Submitting form by email to include field value as CC

  • July 25, 2019
  • 4 replies
  • 794 views

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?

This topic is closed to new replies. Start a new post to keep the conversation going.
Correct answer try67

The name of this parameter is cCc, not cCC.

4 replies

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
July 25, 2019

The name of this parameter is cCc, not cCC.

amandas83818402
Participating Frequently
July 25, 2019

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