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-29-2025 11:05 AM
Are comments not updated on a case not updated out of the box when a customer replies? I have not use cases yet. Can your provide the code of your inbound action? I would think it would be similar to the incident one just need to point to the the table for cases.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2025 11:11 AM
Here is the code for the "Update case via reply" Inbound action:
Customers can comment on a case when signed into SN and that does notify us as an "additional comments added" email notification we get, the issue is if they reply to an email to ticket email that just shows up as an "email received" and doesn't notify anyone.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2025 03:12 PM - edited ‎01-29-2025 03:13 PM
Yes I see that. I just install CSM on my developer instance. I'm note sure why it was designed that way. There are a couple things here. You can add current.comments = "reply from: " + email.origemail + "\n\n" + emailBody; similar to incident inbound action. Which would then fire the case commented notification just like if they did it via the system.
OR
You could trigger an event when the case is updated like @MrGupta__ mentioned.
1. First you need to register an event
2. Then you need to create a notification that fires based on that event.
3. You need to use gs.eventQueue to trigger the event via code in the inbound action.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2025 03:57 PM
I've attempted to add the code you suggested to the inbound action "update case via reply" but that has not resulted in any emails.
This is the current code.