Outlook Split lines from Body

Happy learning :slight_smile:

Here you go - How to split the body of the email into Each line.

Create a var - Outlook_Body
Outlook_Body= item.body

Create a var - out_line1

out_line1= Outlook_Body.Split(Environment.NewLine.ToCharArray)(0)

out_line2=Outlook_Body.Split(Environment.NewLine.ToCharArray)(1)

out_line3=Outlook_Body.Split(Environment.NewLine.ToCharArray)(2)

Regards,
Srernivasan kanna