New line while Mail Message?

How to go to new line when sending Mail Message & IsBodyHtml is checked?

Hi @UiMe

I suppose you can add a new line with the HTML tag:
<BR />

I did not test it myself though in UiPath, so let me know if that worked :slight_smile:

Here is the solution if someone needs it:

String=Test

You can check IsBodyHtml and add this in body mail:

"<b>"+String+"</b>"+"<br>"+"Another Test"+"</b>"

This will give:
Test
Another Test

4 Likes

Thanks for sharing the solution :slight_smile:

1 Like

@loginerror

WELCOME