I have a web based form that sends some details by e-mail to myself.
The thank you page sends the e-mail but it doesnt seem to be working. the thank you page displays correctly but the e-mail never arrives. heres the code in basic format (without the form details):
Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail"
objCDO.To = "tset@testmail.com"
objCDO.From = "Test"
objCDO.Subject = "Test Subject"
objCDO.Body = "Test Body"
objCDO.Send
Set objCDO = Nothing
I have used this remote server to send e-mail with this code before with no problems. Is there any other options of sending mail other than CDONTs?
The thank you page sends the e-mail but it doesnt seem to be working. the thank you page displays correctly but the e-mail never arrives. heres the code in basic format (without the form details):
Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail"
objCDO.To = "tset@testmail.com"
objCDO.From = "Test"
objCDO.Subject = "Test Subject"
objCDO.Body = "Test Body"
objCDO.Send
Set objCDO = Nothing
I have used this remote server to send e-mail with this code before with no problems. Is there any other options of sending mail other than CDONTs?