Scenario User wants to create a Saved Search to extract the domain names from customer email addresses in order to analyze the distribution of email domains among its customer base to better understand its market demographics and tailor marketing strategies accordingly. Solution REGEXP_SUBSTR formula can be used in Saved Search Results to extract the domain name part of… Continue reading REGEXP Formula to Get Email Domain
Tag: email domain
NetSuite email not receiving at intended mailboxes other than JJ mails
When NetSuite is set up to send customers emails based on process like Workflow , yet the email status shows as SENT despite the client’s claim that they haven’t received any —not even in their spam folder— it’s best to check with their IT Director and ask them to whitelist : @sent-via.netsuite.com The Mails send… Continue reading NetSuite email not receiving at intended mailboxes other than JJ mails
Extract Domain from Email
let email = ‘john.doe@gmail.com’;let domain = email.substring(email.indexOf(‘@’) + 1); console.log(domain)