View Single Post
  #2 (permalink)  
Old 04-01-09, 02:07 PM
Merlotti Merlotti is offline
New Member
 
Join Date: Apr 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
I'm not sure of you're To and From email addresses - assuming the T0 email address is varEmail (collected from Request.form("txtEmail")) and the From is "contact@rootsand.com"

To send the email try

Set MailObj= Server.CreateObject("CDONTS.NewMail")
MailObj.To = varEmail
MailObj.From = "contact@rootsand.com"
MailObj.Subject = varSubject
MailObj.Body = varBody

MailObj.Send
Set MailObj = nothing
Reply With Quote