Add hard returns in text portion of SendObject command

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.",
 
In the message section use the VbCr to start a new line

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