SmtpMail.Send

  • Thread starter Thread starter Drew
  • Start date Start date
D

Drew

How do I make the body in SmtpMail.Send have multiple
lines? For the life of me I cannot figure this out. For
some reason, using /n does not work. I have also tried
using HTML in the body as string = "<html> ------

Please help!

Drew
 
* "Drew said:
How do I make the body in SmtpMail.Send have multiple
lines? For the life of me I cannot figure this out. For
some reason, using /n does not work. I have also tried
using HTML in the body as string = "<html> ------

\\\
Dim s As String = _
"Hello" & ControlChars.NewLine & _
"Bla"
///
 
Back
Top