- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 02:02 AM
Hi,
Can anyone help how can I make the line bold when I write a email script.
My script piece of code looks like this:
_______________________________________________________________________________________
if(compliance)
{
template.print("\n SOX / PCI compliant request, please Approve / Reject directly in Service Now\n");
}
else
{
template.print("To approve/reject via email: <br/>"); // want to make this BOLD
template.print("Click here to ${mailto:mailto.approval1}<br/>");
template.print("Click here to ${mailto:mailto.rejection1}<br/>");
}
______________________________________________________________________________________
Thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 02:15 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 02:15 AM
Include <b> tag inside
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 02:53 AM
Yes that is working perfectly. I am not aware of much HTML so thanks again
Also Kirti if you can help for one more item , any idea of syntax to put bullets infront of that line.?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 03:00 AM
Use <li> tag for unordered list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 03:44 AM
Ya I got it. Thanks for your help