Email script : HTML syntax for Bold letters

snowuser111
Kilo Guru

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

1 ACCEPTED SOLUTION

Community Alums
Not applicable

Include <b> tag inside


View solution in original post

7 REPLIES 7

Community Alums
Not applicable

Include <b> tag inside


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.?


Community Alums
Not applicable

Use <li> tag for unordered list


Ya I got it. Thanks for your help