Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Send HTML mail from ASP.NET Page

Status
Not open for further replies.
May 11, 2004
37
US
I cannot figure out how to send messages in HTML format. My code is below, do I need something else besides objMail.BodyFormat = System.Web.Mail.MailFormat.Html?

Thanks, Rich


<script language="vb" runat="server">

Sub sendmessage_Click(sender as Object, e as EventArgs)


Dim objMail as New MailMessage()

objMail.To = Email.Text
objMail.From = "richard.rekos@questionmark.com"
objMail.BodyFormat = System.Web.Mail.MailFormat.Html

objMail.Subject = "Subject.Text"

objMail.Body = body.text
SmtpMail.SmtpServer = "localhost"

SmtpMail.Send(objMail)
message.Text = "Your Email was sent successfully"

End Sub

</script>
 
> SmtpMail.SmtpServer = "localhost"

Try specifying a server that you know is capable of sending mail. (Check your Outlook settings, for example).

__________________________________________
Try forum1391 for lively discussions
 
Thank you for your reply. "localhost" is a valid mail server. I have sent several test messages successfully, but the messages are sent in plain text.
Rich
 
You haven't specified the type of problem you are having.
And where is the difference between your text mail and your html mail code?

__________________________________________
Try forum1391 for lively discussions
 
Hi, the problem is that emails sent via this page are not being sent formatted in HTML, they are formatted as text messages. As far as I know, the only difference should be in one line:

To send in HTML:
objMail.BodyFormat = System.Web.Mail.MailFormat.Html

To send in Text:
objMail.BodyFormat = System.Web.Mail.MailFormat.Text

I have specified HTML in my code, but to no avail.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top