discourse-legacysite-perl/site/slowtwitch.com/www/secure/CDONTS.txt
2024-06-17 22:30:36 +10:00

12 lines
333 B
Plaintext

'This is the code which one can use to send email. Make sure that each field is filled. - Steve
Set objMail = CreateObject("CDONTS.Newmail")
objMail.From = request.form("fEmail")
objMail.To = "steve@aawsom.net"
objMail.Subject = "AawsomNet Sign Up"
objMail.Body = sBody
objMail.Send
Set objMail = Nothing