Hey everyone,
How to make a string in variable bold in body text when sending email?
besides I want to move to new line and write new text, how?
Hey everyone,
How to make a string in variable bold in body text when sending email?
besides I want to move to new line and write new text, how?
You can create HTML form of body and use br and Strong or B tags for Bold and newline
For the new line part of your question:
“Text” + Environment.NewLine + “More text”
The “More text” part is now on a new line.
@PrankurJoshi
Can you give an example please?
See this -
You can just check IsBodyHtML checkbox then pass the HTML data in the body it will work
Hi
You can also use “Data Table to HTML Table” activity .
You cab use & vbNewLine & this will take your next line of text to a New line.
Example: “The Boy is not a Girl” & vbNewLine & “And the Girl is not a boy”
Output:
The Boy is not a Girl
And the Girl is not a boy.
I hope this helps someone.