I tried many method to track am email is valid or not before send it.
Am using php mailer and swift mail to send emails.Many website told refer the mx record. But it returns only the domain is valid or not. NOt returns the email. For example if i have a domain example.com
and i created only [email protected]
,if i tried to send mail to [email protected]
also returns the email is valid. But i need the result for [email protected]
as invalid before sending this email.
Just like the process in http://www.email-validator.net/
There is no way to be 100% sure the email is vaild.
What you can try to do is connect to the mail server, start a mail session and "ask" the server to accept mail for the given address.
Some mail servers will return an error if the address is not listed, but others will accept any address, as long as it is in the server's scope.
As for the site you've mentioned, try to check this address for instance: [email protected]
You will get an answer that the server accepted this address, but it doesn't mean it's a valid one...