Below is my code...I do a response.write before and after it and the variables are there...however it is not sending...how do you debug to see where problem is?
Set MyCDONTSMail = CreateObject("CDONTS.NewMail"
MyCDONTSMail.MailFormat = cdoMailFormatMIME
MyCDONTSMail.From= whorespond
MyCDONTSMail.To= email
MyCDONTSMail.Cc="boo.hoo@nomail.com"
MyCDONTSMail.Subject="Response to your comments/suggestions"
MyCDONTSMail.BodyFormat=cdoBodyFormatHTML
MyBody = fname & " " & lname & "<BR><BR>"
MyBody = MyBody & responsetocomments & "<BR><BR>"
MyBody = MyBody & whorespond
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing
Thanks,
jcroft
Set MyCDONTSMail = CreateObject("CDONTS.NewMail"
MyCDONTSMail.MailFormat = cdoMailFormatMIME
MyCDONTSMail.From= whorespond
MyCDONTSMail.To= email
MyCDONTSMail.Cc="boo.hoo@nomail.com"
MyCDONTSMail.Subject="Response to your comments/suggestions"
MyCDONTSMail.BodyFormat=cdoBodyFormatHTML
MyBody = fname & " " & lname & "<BR><BR>"
MyBody = MyBody & responsetocomments & "<BR><BR>"
MyBody = MyBody & whorespond
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing
Thanks,
jcroft