Use of SendObject

  • Thread starter Thread starter Alex G.
  • Start date Start date
A

Alex G.

I am using SendObject method to send email messages.
I want to include the sender's name at the end of message
text and I want it to be written at new line. Is it
possible to insert something like a "new paragraph"
command or what ever...?
 
Try this in the message text string:

"This is my message " & vbCRLF & "--Roger Carlson"
 
Back
Top