I want to send a notification for 3 days , if user replies triggering should stop
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
I want to send a notification for 3 days to a user , if within this 3 days the user replies to the notification the notification triggering should stop how can i achieve this in ServiceNow
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10m ago
You can try adding a visible or hidden true/false field on the record to run a flow to trigger notification loops, then an inbound email action.
- Add a boolean field on your record (like u_user_replied, default false)
-
Flow logic for notification loop: Record hits your condition, loop notification trigger while "u_user_replied" = false.
- The Inbound Email Action When the user replies, ServiceNow grabs the watermark, matches the recoird, and sets "u_user_replied" to true.