Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
Dim strEmailBody
Dim objEmail
strEmailBody = "<HTML>" & vbcrlf & _
"<HEAD>" & vbcrlf & _
"</HEAD>" & vbcrlf & _
"<BODY>" & vbcrlf & _
"your HTML content here" & vbcrlf & _
"</BODY>" & vbcrlf & _
"</HTML>" & vbcrlf
Set objEmail = CreateObject("CDONTS.NewMail")
With objEmail
.MailFormat = CdoMailFormatMIME
.BodyFormat = CdoBodyFormatHTML
.from = "from_address@abc.com"
.to = "to_address@def.com"
.cc = "cc_address@def.com"
.subject = "Your Email Subject Here"
.body = strEmailBody
.Send
End With
Set objEmail = Nothing
%>