- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2023 06:54 AM
Hi All,
Can someone help me how to add RITM links in the notification email script? I have added the below code but instead of a URL link, the URL is getting printed on the mail.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 08:13 AM
Hi Dipen ,
The link works now but I need to add the RITM number and I have tried adding it like this. Please find the screenshot for your reference
Below is the working code and I need to add RITM number in the view. Please help me on this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2023 08:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2023 07:18 AM
Hi @NagaNandini N ,
Can you please try the script :
var url = '<a href="' + gs.getProperty('glide.servlet.uri') + 'sp?id=ticket&table=sc_req_item&sys_id='+current.sys_id + '">' + 'Click here to go to RITM' + '</a>';
template.print(url);
Please let me know if this works for you and mark helpful if its worked.
Thanks,
Dipen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 08:13 AM
Hi Dipen ,
The link works now but I need to add the RITM number and I have tried adding it like this. Please find the screenshot for your reference
Below is the working code and I need to add RITM number in the view. Please help me on this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 08:28 AM
The below one is the correct code :
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2023 01:13 AM
@NagaNandini N You're welcome.