Send Outlook Mail message body

Helllo i need help in send outlook mail message activity.

Like I have assign one variable ,
ArticleName = “F AA 22”

then I used send outlook mail activity so in body part I need to right this message,

This is automatic generated mail,

Your Article number is : [assign variable]

regards,
Your RPA Robot.

so, can you say which type I can write this mail? because in this mail 4 lines and also in the middle space and also one assigned variable. so, can you provide me with that answer?

Hey @rAE_rAS

I hope you are well.

Can you take a look at this post.

Combined with String.Replace you can achieve what you need. Take a look at here:

Hopefully this helps.

Cheers

Steve

"This is automatic generated mail,\n\nYour Article number is : " + assignvariable + “\n\nregards, \n Your RPA Robot.”

Thank you for your replay

Not working bro

What Mail activity are you using?

Is your email body Using HTML?

SEND OUTLOOK MAIL MESSAGE

Assign :
ArticleName = “F AA 22”

Assign :
Str = String.Format(“This is automatic generated mail,”+vbLf+vbLf+“Your Article number is : [{0}]”+vbLf+vbLf+“regards,”+vbLf+
“Your RPA Robot.”,ArticleName)

Then pass Str Variable to Property Body of Mail.

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