I created email notification and having issues with the Hyperlink
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2023 12:57 PM
Hello
I created an email notification with a clickable hyperlink that users can click, and it will redirect them to the change request. The hyperlink works as intended but I am needing help customizing it to look how I want it.
Current look is "Click here to view the 0000000" and I will like it to say "Click here to view the Change Request"
I will like to click on the change request hyperlink for it to still opens the related CR

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2023 01:10 PM
Then update the notification HTML to say what you want but make the href value be something like
./change_request.do?sys_id=${sys_id}
The above URL is assuming you would like to send them to the platform UI and not workspace or service portal.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2023 07:42 PM
Hi @_Alex ,
There would be <a> tag in your html for email notification, follow as below
<a href="https://instancename.service-now.com/change_request.do?sys_id=${sys_id}">Change Request</a>
Please mark correct if my response has solved your query.
Cheers,
Mohammed Basheer Ahmed.