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
Victor Leung 24Victor Leung 24 

Automation Email Notification

I was wondering if it was possible to create a workflow for an automation email to a checkbox field when it is changed (Checked/ Unchecked)
Himanshu ParasharHimanshu Parashar
Hi Victor,

Have you tried this with Process builder ?

 
Andrew Wilkinson 2Andrew Wilkinson 2
Victor,

Have you tried building a workflow rule. The workflow rule criteria would be as follows:

Created and every time it is edited.

Then in the formula:

ISCHANGED(ApiNameOfCheckboxField__c)

Then add an email alert to this workflow rule.