I'm developing a web application with Chat Support, and so far, I've been using JQuery validation to check whether the input text is a well formatted email address.
But that doesn't seem to fulfill its purpose.
For example:
- Entering a working and legitimate email address such as myname@gmail.com
- Entering a fake/random email address such as abcd@something.com
Both are accepted into the field as valid.
So is there any way to detect whether the specified email address exists or not in real-life, by using PHP (or any other) without sending the user, a click-to-confirm
email?
I've tried the SMTP method discussed in the other question, but unfortunately, the server returned error for all Email addresses, even legitimate ones. I think they have prevented enumeration for security purposes.
Any help would be greatly appreciated. :)