function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
shasha7274shasha7274 

Restricting the domain names of users' e-mail addresses:

Hi to all,

 

I had a query please any one solve ...

 

 

Where can we set Restricting the domain names of users' e-mail addresses for users...please send the navigation for this restriction....

 

Thanks & Regards

 

M Uma Shankar

 

AmitSahuAmitSahu

What do you mean by that restricting user email address.

 

But if you are saying that all users in an org should have same domain name such as example@example.com.

 

Create Validation rules on User object with following condition:

 

NOT(CONTAINS( Email, '@example.com') )

 

Hope this helps