multiplex77
Programmer
Hi,
I'm using CDONTS to send out emails in ASP.
Set objMail = CreateObject("CDONTS.NewMail"
objMail.From = "me@myco.com"
objMail.To = "youyourco.com" 'bad email
objMail.Subject = "Demo"
objMail.Body = "Message"
objMail.Send
The problem is that it doesn't return any result, whether the mail was sent or not.
Questions:
1. is it true that even if the parameters are wrong, like the eg above, there is no error message returned?
2. How can I determine if the mail was successfully sent or not?
Thanks for the help.
I'm using CDONTS to send out emails in ASP.
Set objMail = CreateObject("CDONTS.NewMail"
objMail.From = "me@myco.com"
objMail.To = "youyourco.com" 'bad email
objMail.Subject = "Demo"
objMail.Body = "Message"
objMail.Send
The problem is that it doesn't return any result, whether the mail was sent or not.
Questions:
1. is it true that even if the parameters are wrong, like the eg above, there is no error message returned?
2. How can I determine if the mail was successfully sent or not?
Thanks for the help.