IF Automated Email

Description Send an email to the customer when an item fulfillment status is changed to “shipped”. There should be 2 email templates: the one currently used to send automated emails; another one need to be created with the Subject as “Your order is now ready for pick-up!” and message body as “Pick-up hours are Monday… Continue reading IF Automated Email

Options in email.send

The following code can be used to attach the Pdf of the transaction record to the email as an attachment and set the subject and body of the email using an email template. Create transaction PDF let transactionFile = render.transaction({    entityId: recordId,    printMode: render.PrintMode.PDF,    inCustLocale: true }); save the file to file cabinet transactionFile.folder =… Continue reading Options in email.send

How to add values to an email template from a custom record and send email

We can use email templates for easily sending emails between two records having a contact. Email templates are helpful when the emails should follow a specific format or have some common content like company logo and address.Email templates can be accessed using the navigation: Documents> Templates > Email templatesIf needed to add field values from… Continue reading How to add values to an email template from a custom record and send email

Open Email Message Popup Window using a custom button and set default values

The following User Event Script deployed to Sales Order record places a button on the sales order page named Email CS. Once this button is clicked, an email message window popup will be opened with predefined values of recipient and template category. We could pass many field values through the URL parameters. For those values… Continue reading Open Email Message Popup Window using a custom button and set default values

Editing Email template file for Sales Order

For making changes in email template for sales orders, like changing item images and item options. First we need to edit corresponding email template file. To open the file from the Netsuite account got to Setup>Company>Email>System Email Templates Then we can see the editing window, clicked on the below marked icon ‘div’ for viewing the… Continue reading Editing Email template file for Sales Order