How to use two or more variables in the body section of send outlook mail messages activity?

Hi,
I need to use more than one variable in the body section of outlook mail messages activity. When I used one variable it doesn’t pop out the error, but for more than one variable it through’s some syntax error. Can someone guide me on this problem.
Attaching the screenshot for your reference.

Scenario where it doesn’t through any error:
image

Thanks in advance!
Manoj Kumar V

As new user unable to paste more than one screenshot so pasting it as reply.

Scenario where it does through an error:

after case number variable also put a + sign

other approach is use create html in that you can use n number of variables
but in send mail activity you have to select body as html

Regards

Provide everything in one line

@ManojKumarV you can use it in one line ,To get a string to new line you can give system.environment.newline after each variable
eg:
“Case Number”+" "+ Casenumber+system.environment.newline+"User Name: "+Username

output:
Case Number 1234
Username: abcd

Hi @ManojKumarV

To use more than one variable in the body section of the “Send Outlook Mail Message” activity in UiPath, you can concatenate the variables together using the “+” operator. Here is an example:

"Variable 1: " + variable1 + vbNewLine + "Variable 2: " + variable2

If Case Number is variable,Try use this: Case Number&Case Number