- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2016 08:17 AM
Hi
is there any way to include the actual message in the "Activity Stream @Mention Email" notification?
--> it's sometimes not worth opening ServiceNow
What I mean:
Unfortunately, the message itself is not visible on the "live_notification" entry:
Any idea?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-12-2017 11:59 AM
Hello all,
Recently I tried to deal with the same situation as the one described here.
Thanks to Laura I obtained the solution I was looking for.
I hope the approach shared by her in this thread: https://community.servicenow.com/message/1193632?et=watches.email.outcome#1193632 will be of use to you too!
Best Regards,
Georgi Mavrodiev
IT Consultant
Do It Wise
You may visit us in our Web Site: www.doitwise.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-09-2018 06:27 AM
I hadn't saved the exact thread, but I did apply the update. As Chuck entered above, open the ng_activity_mention_body email script at https://INSTANCE.service-now.com/nav_to.do?uri=sys_script_email.do?sys_id=381391d09f021200d5f9b3e295...
Update the script to something similar to this
var recordGR = new GlideRecord(current.table);
if(recordGR.get(current.document)) {
email.setSubject("You have been mentioned in " + recordGR.getDisplayValue());
template.print("<p style='color: #424E5B;margin: 0 0 12px;line-height: 26px;margin-bottom: 12px'>You have been mentioned by " + current.user_from.name + " in <a href='/" + recordGR.getRecordClassName() + ".do?sys_id=" + recordGR.getUniqueValue() + "'>" + recordGR.getDisplayValue() + "</a></p>");
if (current.field_name == "comments") {
template.print(recordGR.comments.getJournalEntry(1) + "<br />");
}
else if (current.field_name == "work_notes") {
template.print(recordGR.work_notes.getJournalEntry(1) + "<br />");
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2022 09:20 AM - edited ‎11-08-2022 09:21 AM
Can someone assist on how to change the link portion above to the workspace case? The way above is setup it sends you to the core servicenow case page. I am also trying to include the case subject in the notification.
Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-22-2024 01:07 PM
Is there any update on this, we have a similar request from the end ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-30-2024 02:36 AM
Hi Ricky,
Do you have solution? I am also looking for the same.