- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-31-2024 03:13 AM - edited ‎12-31-2024 03:15 AM
Greetings friends,
I have a new requirement to Prefix email Notifications if Service = 'ABC', then the email subject should start with 'ABC - '.
Ideally, I would prefer not creating duplicate email notifications just for this Service and was hoping to use a script if possible.
Already consulted ChatGPT/CoPilot, could not get their recommended solutions to work.
Thanks in advance for any guidance.
Happy 2025 in advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-31-2024 04:06 AM
use this in the IF condition
if(current.business_service.toString() == 'Give Your Exact Business Service Name Here')
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
‎12-31-2024 04:41 AM - edited ‎12-31-2024 04:43 AM
Hi @Leon Els ,
Your text is incorrect, let me give you text.
if (current.business_service && current.getDisplayValue('business_service') == 'SAP Enterprise Services') {
// Prefix the subject with 'ABC - '
email.setSubject('ABC - Incident ' + current.number + 'has been created - '+ current.short_description);
// if getSubject() wont work then simply type your subject
}else{
email.setSubject('Incident - ' + current.number + 'has been created - '+ current.short_description);
}
-------------------------------------------------------------------------
If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." This not only supports me but also benefits the community.
Regards
Runjay Patel - ServiceNow Solution Architect
YouTube: https://www.youtube.com/@RunjayP
LinkedIn: https://www.linkedin.com/in/runjay
-------------------------------------------------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-31-2024 03:17 AM
since it requires dynamic subject you should use email script and set the subject
I hope you are aware on how to include email script in notification and you will be able to apply the correct condition in script
(function runMailScript(current, template, email, email_action, event) {
// Add your code here
if (current.service == 'ABC') { // give your correct condition here
email.setSubject("ABC - " + 'Your Actual subject here');
} else {
email.setSubject('Your Actual subject here');
}
})(current, template, email, email_action, event);
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
‎12-31-2024 03:45 AM
I created my mail script and included the below in the subject of my email (this did not work) and then I tried to add the below to the body of my email, but this also did not work.
Where should I add the code below in my notification, please?
Thank you!
${mail_script:Prefix_Email_Subject_By_Service_ABC}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-31-2024 03:48 AM
the way you included is correct.
you can include it at any place in notification body
As mentioned earlier ensure you give the correct condition based on the field which are you referring in your question i.e. Service and the correct value to compare i.e. ABC
Please share your latest email script and the notification is on which table and the field service which you are comparing and the value you are comparing
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
‎12-31-2024 04:04 AM