HardCoreCoder
Programmer
What do I need to add to this set of code to make it an HTML email?
Code:
<%@language="VBScript"%>
<%Option Explicit%>
Dim objMail
Set objMail=CreateObject("CDO.Message")
objMail.Subject=strSubject
objMail.From="mpbarone@aaamichigan.com"
objMail.To="mpbarone@aaamichigan.com"
objMail.TextBody="Message"
objMail.Configuration.Fields.Item ("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/sendusing")[/URL] = 2
objMail.Configuration.Fields.Item ("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/smtpserver")[/URL] = "xxx.78.xxx.242"
objMail.Configuration.Fields.Item ("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/smtpserverport")[/URL] = 25
objMail.Configuration.Fields.Update
objMail.Send
Set objMail=nothing