Email address validation is basically an impossible problem. In practice, the best strategy is:
1. Check if email is wellformed, with an *extremely* lenient algorithm. Basically, do we have .*@.* ?
2. Check that the domain is real, has an MX record, and the SMTP server in the MX record exists.
Ok, send mail! The only way to verify after that is to send an email with a verification link and complete the circle.
Um... I hate to be so harsh but this is worthless. Checking a few of mine, all different domains, I got
Nemesis ESMTP Service not available 554-No SMTP service 554-IP address is black listed.
---
This domain has a catch all email address so we are unable to determine if this email matches an account.
---
Error: Invalid greeting from server - 554 No SMTPd here
This email does not exist or cannot be found
---
Error: Invalid greeting from server - 554 Your access to this mail system has been rejected due to the sending MTA's poor reputation. If you believe that this failure is in error, please contact XXXXXX
This email does not exist or cannot be found
So... yeah... 100% error rate on something that says "the results should be relatively trustworthy." Relative to what? That success rate doesn't even crack the Mendoza Line.
Nope. Reports @example.[something] as existing, whereas info@[something else] - which regularly gets mail - as nonexisting. Both Type I and Type II failures, but confidently proclaims the verdict? Worse than useless: actively misleading.
It seems that some domains just kill the backend. For my work e-mail, and probably any other on the same domain, it returns HTTP 503 (service unavailable) after ~30s, and frontend is stuck at "Checking…" forever. Maybe our mailserver fights back the spammers somehow. :)
Also, it kinda sucks that i can't send the query with Enter key, and i bet it sucks much more for eg. visually impaired users. Is there any particular reason you used bunch of <div>s instead of good old <form>?
We use Cisco's cloud Ironport solution for email spam protection and I get the following when I check my email address:
Error: Invalid greeting from server - XXXXXXXXX.iphmx.com 554 Your access to this mail system has been rejected due to the sending MTA's poor reputation. If you believe that this failure is in error, please contact the intended recipient via alternate means.
Apparently tries to resolve MX, connect and try to poke around. Surprisingly, the last time that trick worked reliably was in the early 2000s, because guess who also used the same trick? Yup, spammers - so most servers will either a) deny existence for any address, or b) claim existence for every address. And that's before greylisting and SPF and whatnot.
The only way to be sure that the address actually exists is to send mail and have the recipient actively respond - however, if there's no response, it can mean any number of things: no such address, message got lost, message got spambinned, message got deleted by recipient, recipient couldn't be bothered to reply.
In other words, do not expect certainty from e-mail.
This is just a web-app using smtp to ask your mail server if it is willing to accept mail for your address, then leaving before actually passing any mail.