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?
...and the problem is that the message is sent as pure text including the How could i send the email as html?
| |||
|
feedback
|
|
Have a look at MailMessage.IsBodyHtml | |||
|
feedback
|
|
I'm not sure how to do this in VB, but you need to set the mime-type to text/html | |||
|
feedback
|
|
You need to specify that the mailbody is to be sent as HTML... like this:
| |||
feedback
|