Hard return on text in message body?

  • Thread starter Thread starter scowsert
  • Start date Start date
S

scowsert

I can write text out like
myitem.Body = "Hello world this is a test"
Makes the body display one line.
"Hello world this is a test"

I would like to put a hard return between the words.
Making the body display.

"Hello"
"world"
"this"
"is"
"a"
"test"

How do I write myitem.body = "?????"

Thanks for helping me out. :D
 
vbCrLf is the constant that represents a carriage return/line feed, hence:

myitem.Body = "Hello" & vbCrLf & "world"
 
Back
Top