You need to sign in to do that
Don't have an account?
Identifying automation process where email is sent via debug
In this org, there is a quick action on a list view called 'Execute Order Importer for Selected'. When clicked, the selected order requests are converted and during this process an email is automatically sent to the indivisual who created that order. The quest is to identify that process where an email is sent to reuse for another process.
I ran a debug log and have honed in on an EMAIL_QUEUE line which I believe is involved in the email automation using a template. I've also identified in the log the email that the message was sent to.
Question: How can I use this to identify the automation that occurs so that I may replicate it elsewhere?
If it is a workflow, you will see something similar to the following
If it is an action, you will see WF_ACTION log lines
I recommend reviewing the following links to learn more
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_debugging_system_log_console.htm
https://help.salesforce.com/articleView?id=000337022&type=1&mode=1
Let me know if this helps, if it does, please mark this answer as best so that others facing the same issue will find this information useful. Thank you
Anudeep, thank you for pointing me to these links.
Follow-up question, how do I identify the Apex class that an EMAIL_QUEUE event name is referencing to go to that line of code?