Sending HTML Email with ASP
Last time you learnt how to receive or send form data using ASP. Let's now see how we can send HTML messages using the Active Server Pages. The process is quite similar to sending the regular, text message, but yes, there are a few modifications. Using the code given below, you can send HTML messages:
== Code Begins ==
<%
Dim htmlMess ' THIS STORES THE HTML CODE ' PLEASE TAKE CARE ABOUT YOUR DOUBLE QUOTES
htmlMess = "<html><head><title>HTML message in Email</title>"