Archive for March 12th, 2008
HTML Email with ASP
Wednesday, March 12th, 2008Here is the way you can send HTML email by using the Active Server Pages using the following code.
<%
Dim htmlMess ‘ THIS STORES THE HTML CODE
‘ PLEASE TAKE CARE ABOUT YOUR DOUBLE QUOTES
htmlMess = “<html><head><title>HTML message in Email</title>”
htmlMess = htmlMess & “<style>”
htmlMess = htmlMess & “h1{font-family : Arial; font-size : 16pt; font-weight : bold; color: […]
