This article mainly introduces the usage of an E-mail verification class written in php, which is very simple and practical. you can directly use it with your reference. This class can be used to check whether an email uses the SMTP protocol effectively.
It can connect to the SMTP server defined in the MX record verified by the address domain name.
Simulate message transmission to check whether the specified recipient address is accepted as valid.
Sample<? Php // www.codepearl.com include_once 'class. verifyEmail. php '; $ email = 'verify @ codepearl.com'; $ vmail = new verifyEmail (); if ($ vmail-> check ($ email) {echo 'email <'. $ email. '> exist! ';} Elseif ($ vmail-> isValid ($ email) {echo 'email <'. $ email. '> valid, but not exist! ';} Else {echo 'email <'. $ email. '> not valid and not exist! ';}?>
The above is all the content shared in this article. I hope it will be helpful for you to master PHP.
Please take a moment to share your article with your friends or leave a comment. Thank you for your support!