How to automatically break lines in email body

I am draft email, and there is a content that was read from Excel. After insert to the email, All text squeezed together without line breaks. How to solve this problem

It should like this:
image

But when it insert to email body, All bullet in one line, How to start Line wrap and word wrap from the second bullet like above
image

I use Assign like this:
image

@sunny.zhang

Use HTML code to write as per your requirement

Hope this may help you

Thanks,
Srini

Hi @sunny.zhang

Try like this

Var1.Replace(“.”,Environment.NewLine+“•”)

image

Output:

I hope it helps!!

Hi @sunny.zhang

The sample test Ex:

RPA drives rapid. significant improvement. to business metrics across industries. and around the world.

In assign activity:

str_text = "RPA drives rapid."+vbLf+"significant improvement."+vbLf+"to business metrics across industries."+vbLf+"and around the world."

print: str_text
output:

RPA drives rapid.
significant improvement.
to business metrics across industries.
and around the world.

Hope it helps.

@sunny.zhang

Give the date in excel like this:

RPA drives rapid."+vbLf+“significant improvement.”+vbLf+“to business metrics across industries.”+vbLf+"and around the world.

@sunny.zhang

If you find the solution for your question please mark as solution to close the loop.