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
nlapiMergeRecord
I'm trying to send a merged email from a custom record when a particular field is checked. There is something about the nlapiMergeRecord line that doesn't allow the script to work -- when I // that line the script basically works.
Another smaller problem is I would like to have the copy of the email attached to the custom record mail merge history -- somehow the recordID in the nlapiSendEmail line doesn't work either.
Any suggestions?
function MergeAndSendEmail()
{
var author = nlapiGetUser();
var recipient = nlapiGetFieldValue('custrecordr7nxlicensecontact');
var recordType = nlapiGetRecordType();
var recordID = nlapiGetRecordId();
if ((nlapiGetFieldValue('custrecordr7nxlicensesendactivationemail') == 'T'))
{
var emailBody = nlapiMergeRecord( 172, recordType, recordID, null, null, null );