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

I need to be able to Submit a Form to email and add a CC address depending on a radio button choice

New Here ,
Jun 25, 2018 Jun 25, 2018

Here is what I have:

var cFormTitle = "CF Order Investigation: ";

var cAccountName = this.getField("Account Name").value;

var cAccountNumber = this.getField("Account Number").value;

var cToAddr = "qualityanalyst@test.com";

var cCCAddr = "salessupport@test.com";

if(this.getField("Radio1").value = "Yes") {

cCCAddr = "salessupport@test.com";

}

this.mailDoc({

bUI: true,

cTo: cToAddr,

cCCAddr: cCCAddr,

cSubject: cFormTitle + cAccountName + " - " + cAccountNumber;

})

When I try to select OK to save it, it gives me the error: SyntaxError: missing } after property list 13: at line 14

The output I would need is similar to this:

To: qualityanalyst@test.com

CC: if the Yes Radio button is selected I need this to auto fill to salessupport@test.com

Subject: CF Order Investigation: 123456 Test Account

Any help would be huge!!!  Thanks ahead of time guys

TOPICS
Acrobat SDK and JavaScript , Windows
847
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 , Jun 26, 2018 Jun 26, 2018

You used an incorrect parameter name. Change this;

cCCAddr: cCCAddr,

To:

cCc: cCCAddr,

Translate
Community Expert ,
Jun 25, 2018 Jun 25, 2018

Drop the semi-colon in the penultimate line.

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 ,
Jun 26, 2018 Jun 26, 2018

Okay and I did that but it's not inserting anything into the cc field on my email?

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 ,
Jun 26, 2018 Jun 26, 2018

You used an incorrect parameter name. Change this;

cCCAddr: cCCAddr,

To:

cCc: cCCAddr,

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 ,
Jun 26, 2018 Jun 26, 2018

That worked perfect except when I select the No radio button it still inserts the salessupport@test.com into my cc field.

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 ,
Jun 26, 2018 Jun 26, 2018

Change:

if (this.getField("Radio1").value = "Yes") {

To:

if (this.getField("Radio1").value == "Yes") {

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 ,
Jun 26, 2018 Jun 26, 2018
LATEST

Also, that condition doesn't make much sense. If you want it to work you need to define cCCAddr as a blank string, before the condition.

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