Modules

filter

 

Objects/Functions

module (N/runtime)

SuiteScript 2.0

User.email

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=User.email for more information.

N/runtime Module
User.email
Property Description: The email address of the current user. To use this property, theĀ emailĀ field on the user employee record must contain an email address. In a shopping context where the shopper is recognized but not logged in, this method can be used to return the shopper's email, instead of getting it from the customer record.
Type: string (read-only)
Supported Script Types: Client and server scripts For more information, see SuiteScript 2.0 Script Types.
Module: N/runtime Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=User.email

Example:

// Code Example 1
// Add additional code
//...
var userObj = runtime.getCurrentUser();
log.debug('Current user email: ' + userObj.email);
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4296669120.html