Can I send notification email to quote creator instead of submitter?
Question
Workflow notification emails are sent to the Quote submitter when a Quote is approved or denied. Is it possible to send the email to the Quote creator instead?
Answer
You can send an email to the creator from the workflow logic:
def u = api.find("U", Filter.equal("loginName", quote.createdByName))
def userEmail = u.email[0]
api.sendEmail(userEmail, "subject", "email text")
Then disable sending notifications on step approval/denial in the Workflow Notifications configuration section so that emails are not sent to the submitter.
, multiple selections available,
Related content
How To Generate Approval Required E-mail On Quote Save
How To Generate Approval Required E-mail On Quote Save
More like this
How to Add Approver to Workflow Email Template
How to Add Approver to Workflow Email Template
More like this
Advanced Configuration Options (Approval Workflow)
Advanced Configuration Options (Approval Workflow)
Read with this
Workflow, Post Step Logic - Handbook
Workflow, Post Step Logic - Handbook
Read with this
In Workflow History, Executed By shows the wrong name
In Workflow History, Executed By shows the wrong name
Read with this
My Workflows (Configuration)
My Workflows (Configuration)
More like this
Found an issue in documentation? Write to us.