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.
' Send email
Set objMail = Server.CreateObject("CDONTS.NewMail")
with objMail
.From = "me@mydomain.com"
.To = "you@yourdomain.org"
.Subject = "An email!"
'create html email
note = "You've just received an email from me."
HTML = HTML & "<HTML>"
HTML = HTML & "<HEAD>"
HTML = HTML & "<TITLE>A little something</TITLE>"
HTML = HTML & "</HEAD>"
HTML = HTML & "<BODY bgcolor=""#FEECCB"">"
HTML = HTML & "<CENTER>" & note
HTML = HTML & "<BR><BR>"
HTML = HTML & "</BODY>"
HTML = HTML & "</HTML>"
'you need TO add these lines FOR the mail
'to be sent in HTML format
.BodyFormat = 0
.MailFormat = 0
'Response.Write note 'test to see if the id worked
.Body = HTML
.importance = 0
.Send
end with
Set objMail = nothing