How faulty checking for valid email addresses can hurt you
1–10 of 18 posts
Re: How faulty checking for valid email addresses can hurt you
#2Re: How faulty checking for valid email addresses can hurt you
#3My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. Validating against the whole range of possible address content is near pointless. The warning simply asks the user to check their email in case of errors but allows a page submission following the display of that warning.
[1] Great overview of the problem, plus a PHP validator. http://www.dominicsayers.com/isemail/
Re: How faulty checking for valid email addresses can hurt you
#4My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. Validating against the whole range of possible address content is near pointless. The warning simply asks the user to check their email in case of errors but allows a page submission following the display of that warning.
My policy on validating email addresses is "if I send you an email and it arrives, your email address is valid".
Why do you need to "validate" an email address? Knowing that an address is syntactically valid doesn't do anything to confirm that it will reach the intended target.
Re: How faulty checking for valid email addresses can hurt you
#5My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. Validating against the whole range of possible address content is near pointless. The warning simply asks the user to check their email in case of errors but allows a page submission following the display of that warning.
My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. My policy on validating email addresses is "if I send you an email and it arrives, your email address is valid". Why do you need to "validate" an email address? Knowing that an address is syntactically valid doesn't do anything to confirm th…
I agree - long term relationships are built on (in the context of this conversation) an exchange of emails but why blow it at the first hurdle?
Re: How faulty checking for valid email addresses can hurt you
#6My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. Validating against the whole range of possible address content is near pointless. The warning simply asks the user to check their email in case of errors but allows a page submission following the display of that warning.
My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. My policy on validating email addresses is "if I send you an email and it arrives, your email address is valid". Why do you need to "validate" an email address? Knowing that an address is syntactically valid doesn't do anything to confirm th…
Re: How faulty checking for valid email addresses can hurt you
#7My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. Validating against the whole range of possible address content is near pointless. The warning simply asks the user to check their email in case of errors but allows a page submission following the display of that warning.
My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. My policy on validating email addresses is "if I send you an email and it arrives, your email address is valid". Why do you need to "validate" an email address? Knowing that an address is syntactically valid doesn't do anything to confirm th…
Re: How faulty checking for valid email addresses can hurt you
#8You can try, but you can't prevent people from doing dumb things, and in the attempt you end up potentially making mistakes like in the case of the article. Users will always do something unanticipated. With that in mind I only validate the things that really matter (e.g. credit card numbers, social security numbers, etc.). If someone wants to enter "jane at aol" as their address, I have to think, "is this going to a problem for my company?" If not, don't bother to try to fix it.
Re: How faulty checking for valid email addresses can hurt you
#9My current policy on validating email addresses is to issue a warning if a given email address fails a check against a standard that covers the vast majority of addresses in use. Validating against the whole range of possible address content is near pointless. The warning simply asks the user to check their email in case of errors but allows a page submission following the display of that warning.