Calling variable in body of the send outlook mail message

Hello,

I am using send outlook mail message property to send an email. In the body i have to add a variable which contains a string.

Eg. “Link” is a variable, by calling this variable i want to send the string stored in this variable.

if the variable carried someone’s name, you could just do this:

“name:” + " " + variable

Thank You.

1 Like

Also, along with variable if i have to add “This is my first assignment”
Then how can i add this?

“This is my first assignment” + variable. To leave a space in between just add this " ", so it becomes

This is my first assignment” +" "+ variable and you put a + sign to add more strings in there

1 Like

@morepriyanta

You write as below

“name:” + " " + variable + “This is my first assignment”

Hope this helps you

Thanks

Yes, it helped. Thank you.

1 Like

@morepriyanta

Great!!

Mark as solution, so it will be help others for future reference

Happy Automation

Thanks

1 Like

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