Email template get the URL field with link
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2022 07:48 AM
Hi All,
We have one field contain URL value in Incident communication task.Have to get that URL field in email template.Could you please suggest.
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2022 08:48 AM
Hi,
You can use email script in your template and get the field value and pass it to <a> tag.
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2022 09:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2022 10:46 AM
Thank you. Are you suggesting me to do like below script?
var URL = current.u_meeting_link;
template.print('<a href="'+URL+'"</a>');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2022 11:11 AM
Yes, you are on right track. Use it like that only.
var url= current.u_meeting_link;
template.print('<a href="'+url+'"> Meeting Link Label of your choice </a>');
Thanks
Anil Lande