- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 10:42 AM
Hello experts!
I have a requirement to fulfill - there are 2 notifications configured, both are triggered using events. One event runs on 2nd thursday of every month & another runs on the BR which triggers on insert with certain conditions.
How can i add those triggering dates into my notification body. What should be the notification script?? Please help me in achieving this.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 08:48 PM
you can simply get the current date/time for this and print in email body
template.print(new GlideDateTime());
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 08:48 PM
you can simply get the current date/time for this and print in email body
template.print(new GlideDateTime());
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2023 11:41 PM
Thank you for the solution, it worked like a charm! 😊