You can use Tooling API for this and query from developer console.
> Open Developer Console > Click on Query Editor > Check "Use Tooling API" > Set query, e.g. SELECT Id, DeveloperName, Description, CcEmails, SenderType, TemplateId FROM WorkFlowAlert WHERE CcEmails like '%the.user@email.com%' > Click Execute
Hope above information was helpful.
Please mark as Best Answer so that it can help others in the future.
@Michael Foster 5 SELECT DeveloperName, CCemails, otherFieldAsNeeded FROM WorkFlowAlert Note that there can be multiple recipients, and, other types of recipients, such as the record Owner, a public Group, etc etc, so a single query is probably impossible.
You can use Tooling API for this and query from developer console.
> Open Developer Console
> Click on Query Editor
> Check "Use Tooling API"
> Set query, e.g. SELECT Id, DeveloperName, Description, CcEmails, SenderType, TemplateId FROM WorkFlowAlert WHERE CcEmails like '%the.user@email.com%'
> Click Execute
Hope above information was helpful.
Please mark as Best Answer so that it can help others in the future.
Thanks,
SELECT DeveloperName, CCemails, otherFieldAsNeeded FROM WorkFlowAlert
Note that there can be multiple recipients, and, other types of recipients, such as the record Owner, a public Group, etc etc, so a single query is probably impossible.