Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Inbound Email- Change recipient field?
We have a BeforeSubmit script that runs on inbound emails that come from our SNMP monitoring system.
The emails used to be sent to tickets@blah.com, but a change has meant the emails now come BCC'd to tickets@blah.com, so Netsuite sees the recipient as "Undisclosed Recipient".
I'm trying to write a script to force change this field, but it doesn't seem to work.. Any ideas?
var rec = nlapiGetNewRecord();
var newrecipient='tickets@blah.com';
rec.setFieldValue('recipient', newrecipient);
0