%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
Untitled Document
<%
body="Did you get this? It is just a test..."
Set mailer = Server.CreateObject("SoftArtisans.SMTPMail")
strVer = Mailer.Version
mailer.RemoteHost ="localhost"
mailer.FromAddress = "meldrape@gmail.com"
mailer.AddRecipient "", "cbwsatx@gmail.com"
mailer.AddbCC "", "mel2003@clickfocal.com"
mailer.Addbcc "","eag@eagerweb.com"
mailer.Addbcc "","todd@sanantonioweddings.com"
mailer.contenttype = "text/html"
mailer.HTMLText=body
mailer.Subject = "Just an email test..."
mailer.sendmail
response.write "An email was just sent. If we receive it, then all is well."
%>