Hi
I am trying to automate sending messages in outlook. In the 'Body' section how do I drop down to the next line?? I would like to have line breaks in between paragraphs.
ie. How do I position the cursor to the start of a new line.
Thanks
Gregg
Printable View
Hi
I am trying to automate sending messages in outlook. In the 'Body' section how do I drop down to the next line?? I would like to have line breaks in between paragraphs.
ie. How do I position the cursor to the start of a new line.
Thanks
Gregg
use vbCRLF
eg
.Body = "This is the first line of the body text" & vbCRLF
.Body = .Body & vbcrlf
.Body = .Body & "This is the third line"
does this answer your question?
have you had a lok at the Autoemail tip?
http://www.vb-world.net/demos/autoemail/