Dim objMail As New Mail.MailMessage("no-reply@mywebsite.com", ToEmail, "Password Reset", body)

...and the problem is that the message is sent as pure text including the <br> tags within the body

How could i send the email as html?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Have a look at MailMessage.IsBodyHtml

link|improve this answer
feedback

Easy:

objMail.IsBodyHtml = True
link|improve this answer
feedback

I'm not sure how to do this in VB, but you need to set the mime-type to text/html

link|improve this answer
feedback

You need to specify that the mailbody is to be sent as HTML... like this:

objMail.BodyFormat = System.Web.Mail.MailFormat.Html;
link|improve this answer
Just an FYI, the BodyFormat property is for a MailItem object, not MailMessage. – James Lawruk Jan 29 '10 at 16:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.