i've been searching and testing lots how to validate if an email really exists or not, but can't fins the php library to Works correctly like does some web pages.
I've tested: http://code.google.com/p/php-smtp-email-validation/ https://github.com/nsgeorgi/verify-email https://github.com/hbattat/verifyEmail
but some emails corrects shows like incorrect and the other way arround.
I have implemented verify-email and verifyEmail with 4 examples: http://survey.socialwibox.com/verifyemail/example.php
email <[email protected]> exist! email <[email protected]> exist! email <[email protected]> exist! email <[email protected]> valid, but not exist!
http://survey.socialwibox.com/verifyemail/example2.php
[email protected] -> Array [0] => invalid [1] <br> [email protected] -> Array [0] => invalid [1] <br> [email protected] -> Array [0] => valid [1] <br> [email protected] -> Array [0] => invalid [1] <br>
In fact both are ok with gmail but incorrect with jofre.com
[email protected] Exists [email protected] NOT EXISTS
If I test this email with this WEB: https://tools.email-checker.com/
all the results are the correct aswer with jofre.com
Is there any way to have it working like this website with PHP ?
Thanks