Bold text in email notification

This is what’s in the email bot’s email body
Key ID: <<[key_main]>>

For example, I want Key ID: to be bolded in the email notification?
Please let me know

0 3 1,201
3 REPLIES 3

You could use HTML as the email’s body template
I use this as a simple centered notification email:

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table style="width: 100%;">
<tr><td>
    <table style="align-items: center; max-width: 500px; margin: 0 auto;">
        <td style="text-align: center;">
        <h1>SOME CODE HERE AS HEADER H1</h1>
        <h2>SOME CODE HERE AS HEADER H2</h2>
        <H2>ANOTHER ONE</H2>
        <h3>HEADER 3</h3>
        <h3>HEADER 3</h3>
        <p>PARAGRAPH</p>
        </td>
    </table>
</td></tr>
</table>
</body>
</html>

Make sure to use &lt;&lt; instead of << and &gt;&gt; instead of >>

This might be a little bit more than you need, but in general:

Another option is , if you are willing to use the option Email body template in say Google docs , then the formatting of various fields could be simply done in the email body Google template itself.

The picture below shows Google doc template wherein different formatting has been applied to various fields.

3X_a_4_a4039c09cf2cae537e14aa3d44daf11abf6b3a5a.png

The picture below shows the resulting email body when the BOT sent the email

3X_4_b_4bd29780d458eb58e25696aeb769335813f64e74.png

The option to use template for email body is available as below

My solution was a little overkill
I do what @Suvrutt_Gurjar said but I forgot it was that easy.
Anyway, there you have two options, one with HTML and another using Docs/Word

Top Labels in this Space