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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top