How to Bold Text if email body is saved in configuration file

Hi All,Could anyone please advise how to Bold some words in the body of the email? The body of my email is save in the configuration file. Is there a way to do it without using HTML or combine both? Thank you.

Hi @jarous

HTML is required to achieve this.

image

add bold tags in the text and enable isBodyHtml in properties of send mail activity.

image

@jarous , I think so there is no option to bold the text without HTML.
Use below for HTML bold
<b>Hello <b>
Output
Hello

Hey @jarous ,

You can add to HTML tags to add the formatting to the text in the Configuration file.
And while using it in the activity you can enable the checkbox IsBodyHTML.

Thanks,
Sanjit

Hi @Sanjit_Pal,
thank you, the bold part works but the resto of the body format is in one line. Is there a way to keep the same format I have in the excel for the whole email body? Thank you

for the next line you have to add a break tag

<br>

this will break a single line into two separate lines.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.