Copy link to clipboard
Copied
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:
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
You used an incorrect parameter name. Change this;
cCCAddr: cCCAddr,
To:
cCc: cCCAddr,
Copy link to clipboard
Copied
Drop the semi-colon in the penultimate line.
Copy link to clipboard
Copied
Okay and I did that but it's not inserting anything into the cc field on my email?
Copy link to clipboard
Copied
You used an incorrect parameter name. Change this;
cCCAddr: cCCAddr,
To:
cCc: cCCAddr,
Copy link to clipboard
Copied
That worked perfect except when I select the No radio button it still inserts the salessupport@test.com into my cc field.
Copy link to clipboard
Copied
Change:
if (this.getField("Radio1").value = "Yes") {
To:
if (this.getField("Radio1").value == "Yes") {
Copy link to clipboard
Copied
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.