CDONTS

P

PaulB9

I have found a ton of examples for setting up a "Send to a Friend" e-mail
form using CDONTS but not one of them addresses error returns. I've searched
microsoft site to no avail. Does anyone know what the error returns are and
what they mean? Does CDONTS check the e-mail addresses for basic correct
structure(i.e. @, no spaces, more than 1 letter after the period, etc.) or
do I need to do that?
Thanks a lot!
 
R

Ronx

CDONTS and CDOSYS assume the data passed is perfect. It is up to you
to validate the data (including email address structure) before
passing it to CDONTS. IMO validation should be in both the client,
using JavaScript on the page, and in the server-side scripting, for
those users with JavaScript turned off.
 
Top