- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2018 04:06 AM
Hi Team,
I have a query that while working on Email Notifications for Incident, there are some OOB Notifications defined.
But I want to add a link as "Take Me To The Instance" under the email notification body text. Once any user click on that link it will re-direct to the homepage of the Instance with navigation bar at the left.
Anyone can share some inputs on this how to achieve this then it would be great.
Thanks,
Gourav
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2018 02:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2018 06:41 AM
You need to put below piece of code in mail script tag.
<mail_script>
template.print('<a href="https://instancename.service-now.com">Take me to instance</a>');
</mail_script>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2018 08:16 AM
Hi Deepak,
Does it work for me? And in which mail script do I need to put this link?
Can you show me an example for this then it will be helpful for me?
Thanks,
Gourav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2018 07:28 AM
Hi,
To redirect to the record add
Click here to view the ticket: ${URI}
For instance create a email script
Add script in notification
${mail_script:sc_req_item_script_1}
and below is out put
instead of Login you message will display. Login is in my case.
Thanks
Please Hit ✅Correct, ⭐️Helpful depending on the impact of the response
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2018 01:01 AM
Hi Upender,
Can you please brief me on the same.