% @ LANGUAGE="VBSCRIPT" %> <% Option Explicit %> <% Dim objMail Set objMail = CreateObject("CDONTS.NewMail") objMail.From = "ASpeaker@lethiaowens.com" objMail.Subject = "How TO send email with CDONTS" objMail.To = "lethia@lethiaowens.com" objMail.Body = "This is an email message" & vbcrlf&_ "with CDONTS." & vbcrlf&_ "It is really easy. " objMail.Send Response.write("Mail was Sent") 'You must always do this with CDONTS. set objMail = nothing %>
| |||||||||||
|