12 lines
333 B
Plaintext
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
|
|
|
|
|