You could create a string variable which you pass into the body?
Use <BR> for a new line
E.g. BodyString = “Case number : 849494 <BR> Account name : XYAUZ”
E.g. BodyString = “Case status : Pending <BR> Contact name : Test”
If you have variables for some of the above i.e. status or name: you could use the below:
E.g. BodyString = "Case status : " + StatusString + "<BR> Contact name : " + NameString + “Test”
Hi @TimK Thank you. I am actually using the same method now. But i want case status and contact name values to hide when i need to send only account name and case number. Do i need to include multiple send outlook email message based on if condition or can it be achieved using some other ways?