formating email body message

  • Thread starter Thread starter RA
  • Start date Start date
R

RA

Hi

If a web server (asp.net) is to send email to client. How can I format the
message body so it will show multiple rows of message instead of one long
message line. Basically I want the email message to look like formated one
with line breaks and more.

Thanks
 
are you using text or html for the message body?
If HTML then use the <br>/<p>/etc.....
 
you'll have to pass in the line breaks /n/r (I think......)
or get the Chr() values to pass them in.

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
 
Shouldn't that be:

line 1\r\nline2

Using the \r\n is mandatory to be compatible with one of these mail
standards...don't just use \n.
Some email servers will reject it (few, but there are some).

Amil
 
Back
Top