Add hard returns in text portion of SendObject command

S

Signman David

I need to put 3 different "lines" of text in the body of the email that is
created by the DoCmd.SendObject. I have everything working perfectly but
don't know how to create a hard return to start a new line of text.
Thanks.
David
 
S

Signman David

Sorry Folks! I found it already addressed after I posted. I promise to do a
better job of searching first in the future.

The answer: "Line 1 Test" & vbCrLf & vbCrLf & "Some more text.",
 
O

Ofer Cohen

In the message section use the VbCr to start a new line

"FirstLine" & VbCr & " SecondLine" & VbCr & "ThirdLine"
 
Top