- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2025 11:09 PM
HI Community,
I need to create a email button in RITM (similar to we have in inc) on click the email reply to, to subject and body needs to be populate
Subject will be short desc of the ritm and in body should have the variable details
Like this i want to add email in ritm
How can we achieve this
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2025 04:10 AM
it worked for me.
Since your email client template is on RITM update this line -> you should query with sys_id
Output:
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
06-29-2025 11:15 PM - edited 06-29-2025 11:28 PM
you need to enable email_client=true in Collection type Record on RITM table
Then configure email client template on RITM table similar to incident table
check this link on how to include variables in email client template
Syntax is {current.variables.variableName} in email body
Populate a Variable value from RITM into an Email Client Template
Output:
I configured this email client template
This is the Output
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
06-30-2025 04:50 AM
HI @Ankur Bawiskar ,
Thanks for the reply.
For a particular catalog item variable we can manually do this by adding current.variables.variable_name
but those variables are not going to be there in different catalog items right?
For example Variable A is present in X catalog but that variable A wont be there in Y catalog.
How we can achieve this dynamic thing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2025 05:06 AM
you can call email script and there you can write logic to fetch variables dynamically.
Simply create email script and call it using normal syntax
${mail_script:EmailscriptName}
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
07-02-2025 03:50 AM
HI @Ankur Bawiskar ,
I tried creating a mail script: