Email Capture Plugin to Approve Vendor Bill

Email Capture plugin is a NetSuite-provided plugin to capture the emails sent to a specific email ID provided by the plugin. We can use this plugin to capture the emails sent to the specific email address and based on that we can do the actions we would like to achieve, similar to approval through email,… Continue reading Email Capture Plugin to Approve Vendor Bill

Email Plugin is not triggered through NetSuite Email

While sending a NetSuite email to email plugin, it will not be triggered. Solution Create an outlook email and redirect to the NetSuite plugin email to get the trigger. Send email from NetSuite to this created outlook email. It will get redirected to plugin email and we can retrieve the contents from the email. Setting… Continue reading Email Plugin is not triggered through NetSuite Email

Add Email Plugin To NetSuite using 1.0

Solution Below code defines capturing attachment from the email and saving to the file Cabinet. And calling the suitelet to perform other actions. To add this to NetSuite, Go to Customizations>Plug-ins>Plug-in Implementations>NewSelect the above scriptSelect Email Plugin>Add name and details> Release the scriptCustomizations>manage Plugins>Check Email Plugin>Copy email and send any file to this email.The Email… Continue reading Add Email Plugin To NetSuite using 1.0

Accessing email data send from email plugin inside Suitelet script

The data can be send to a suitelet from a email capture plugin implementation javascript file using ‘POST’ method.If the suitelet is triggered in ‘POST’ method, we can access this data.The data transferred using ‘POST’ method will be inside ‘scriptContext.request.body’. Since this is transferred as JSON file, the first step on using the datais to… Continue reading Accessing email data send from email plugin inside Suitelet script