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
Murali KrishnaMurali Krishna 

reagrding scenario

someone help me with this scenario

In my contact object,i have a field ‘email’.whenever a email address of contact is updated we want send an email notification to contact stating that your email address has been changed

Ranu JainRanu Jain

Create a workflow rule on Contact object - 

 

  Evaluation Criteria : Evaluate the rule when a record is created, and every time it’s edited

Rule Criteria AND( NOT( ISNEW() ) , PRIORVALUE( Email ) <> Email )

 

 

Email Alert : 

 

 Recipients Email Field: Email  

 

 

sandeep@Salesforcesandeep@Salesforce

Apply a Workflow using a email Alert as action.and in workflow you can use

 

Rule criteria:

NOT(ISNULL(Email))

and your eveluation criteria :

Evaluate the rule when a record is created, and any time it’s edited to subsequently meet criteria

sandeep@Salesforcesandeep@Salesforce

Hi did you get your answer please let me know in case of any further query