Need notifications when replies are sent to a case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2025 10:58 AM
Whenever a client replies to a case generated via Email to ticket, I need a notification sent out to the assignee of that case so we don't miss any sort of information, just like how SN notifies us whenever a new comment is added.
I've been plugging away at this via inbound actions and notifications all day and have about hit my limit, I've seen similar posts about such an issue but was hoping someone had an easy solution I just haven't thought of yet.
Is there any easy solution to be notified on "Email received"?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2025 07:46 AM
You are correct, I just have it set to assigned to.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2025 07:52 AM
Ok lets try this then. Move it above current.update() and change the code to.
gs.eventQueue('case.email.received', current, email.body_text);
Then in the email body you can do ${event.parm1} to display the email.body_text in the notification.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2025 07:58 AM
You're talking about changing the script in the notification correct? Just wanna be certain.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2025 08:10 AM
First part where we are talking about gs.eventQueue, I want you to update that in the inbound action. Where I'm saying to put ${event.parm1} that goes into the message html section of the what will it contain tab in the notification.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2025 08:20 AM
Moved it in the inbound action "update case via reply" to now be this like you said:
Still nothing unfortunately.