Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Adding sent emails to custom records
I'm trying to send and email from a custom record and add that email to it as a related record. I'm sending the email OK, but it just wont add the related record. Strange thing is the same code works in the sandbox but not in live!
The sending code:
email.send({
author: currentrecord.getValue('owner'),
recipients: emailrecipient,
subject: checklistsearchresults[i].getValue(checklistsearchresults[i].columns[1]) + ': A deboarding checklist item requires your attention',
body: '<b>' + employeename + '</b> has now left the company on <b>' + hd + '</b>.<br/><br/>Can you please address the following deboarding checklilst item assigned to you:<br/><br/><b>Title:</b> ' + checklistsearchresults[i].getValue(checklistsearchresults[i].columns[3]) + '<br/><b>Description:</b> ' + checklistsearchresults[i].getValue(checklistsearchresults[i].columns[4]) + '<br/><br/>Can you please ensure that this is completed by <b> ' + dd + '</b>.<br/<br/>Please reply to this email to confirm that the checklist item has been completed.',