Play Games

Search This Blog

Showing posts with label get the logged in user email in apex salesforce. Show all posts
Showing posts with label get the logged in user email in apex salesforce. Show all posts

Saturday, May 1, 2021

get the logged in user email in apex salesforce - Salesforce Globe For You

 get the logged in user email in apex salesforce  - Salesforce Globe For You 

Solution: Use UserInfo.getUserEmail() to get the logged in user email.

Code

String strLoggedInUserEmail = UserInfo.getUserEmail();

system.debug('Logged in User Email: '+strLoggedInUserEmail);