Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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.',