I need to be able to Submit a Form to email and add a CC address depending on a radio button choice
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 ![]()
