- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2023 10:06 AM
I am trying to figure out the best way to trigger an email notification when someone sends an email reply to a record.
I am not sure what to trigger it appears only in activities under received emails and I don't see a way to trigger against that.
I have looked into doing an event with a business rule but not sure what the filter conditions should be?
Same for email notification. I tried doing inbound action to update a field and then trigger off of that but that doesn't seem to work either.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2023 10:48 AM
Hi @Elizabeth26 ,
In the inbound email action just add one line of code to trigger event
gs.eventQueue('event name', current, parm 1, parm 2);
Please mark this response as correct or helpful if it assisted you with your question.
Regards,
Harshal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2023 10:23 AM
Hi @Elizabeth26 ,
Hope you are doing well.
Wherever a user is sending an email to reply to a record an inbound email action will be triggering . Could you please find the name of that inbound email action and in the script section just call an event to trigger a notification.
Please mark this response as correct or helpful if it assisted you with your question.
Regards,
Harshal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2023 10:26 AM
Could you give me an example of the code for the script?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2023 10:48 AM
Hi @Elizabeth26 ,
In the inbound email action just add one line of code to trigger event
gs.eventQueue('event name', current, parm 1, parm 2);
Please mark this response as correct or helpful if it assisted you with your question.
Regards,
Harshal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2023 12:10 PM
That worked!! Thank you so much.