- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 01:20 AM
Hi all,
how create link through notification email script and then how to call in that in notifications. suppose below is one is link:
my requirement is only through notifications email scripts.
please provide source code for this.
Thank you
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 01:27 AM - edited 02-29-2024 01:28 AM
Hi @Sirri here is the example, create a notification email script
script:
var url = ''https://www.google.com';
var googleLink = '<a href="' + url + '">Google</a>';
template.print(googleLink );
call the above email script in your notification with below syntax
${mail_script:Name of the script}
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 01:27 AM - edited 02-29-2024 01:28 AM
Hi @Sirri here is the example, create a notification email script
script:
var url = ''https://www.google.com';
var googleLink = '<a href="' + url + '">Google</a>';
template.print(googleLink );
call the above email script in your notification with below syntax
${mail_script:Name of the script}
Harish