How to Enable and Configure SuiteCommerce Email Verification

You must log in to NetSuite with an Administrator role to configure and manage SuiteCommerce Email Verification.

To enable and configure SuiteCommerce Email Verification:

  1. In NetSuite, go to Commerce > Websites > Configuration.

  2. Select your website and domain, then click Configure.

  3. Go to the Advanced tab and the Email Verification subtab.

  4. Check the Enable Email Verification box to require email verification for registration and guest checkout.

  5. Configure the following settings as required:

    • Sender Employee: Select the employee who appears as the sender of the verification email.

    • Email Template: Select the email template you want to use for verification messages. If you don't select a template, the SuiteCommerce default email template will be used.

      To create a new email template, see Creating New Email Templates. See

    • Verification Code TTL (In Seconds): Enter how many seconds the verification code stays valid before it expires.

    • Code Request Interval (In Seconds): Enter the minimum number of seconds allowed between verification code requests.

    See Email Verification Subtab for more information about the SuiteCommerce Email Verification configuration properties.

  6. Click Save.

Example Verification Email Body

            <#ftl output_format="HTML"> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<#assign website = (CTX.website)!""> 
<#assign code = (CTX.code)!""> 
<#assign time = (CTX.time)!""> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
   <head> 
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
      <title>Email Verification Code From ${website}</title> 
   </head> 
   <body yahoo bgcolor="#f1f1f1"> 
      <p>Hello,</p> 
      <p>To help keep your transactions secure, please use the code below to verify your email address:</p> 
      <p><b>${code}</b></p> 
      <p>This code is valid for ${time} seconds. If you didn't request this code or need assistance, contact our support team.</p> 
      <p>Best regards,</p> 
      <p>${website}</p> 
   </body> 
</html> 

          

Related Topics

General Notices