Email Formatting is it Possible?

  • Thread starter Thread starter Brian Conway
  • Start date Start date
B

Brian Conway

Is there a way to be able to format how an email looks ?

Mail.Body = TextBox1.Text

TextBox2.Text

TextBox3.Text

Something like that just so I can make certain information go to different
lines.
 
Brian Conway said:
Is there a way to be able to format how an email looks ?

Mail.Body = TextBox1.Text

TextBox2.Text

TextBox3.Text

Something like that just so I can make certain information go to different
lines.

Just put "\r\n" between TextBox1.Text and TextBox2.Text etc.
 
Brian,

I would just add a new line/line feed character combination between each
string that you want to place on different lines.

Hope this helps.
 
Back
Top