This class can be used to check whether emails are effectively using the SMTP protocol.
It can be connected to the SMTP server defined in the MX record verified by the domain name of the address.
And simulate the delivery of the message to see if it is accepted as valid at the given recipient address.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Sample</title> </head> <body> <?php // include_once ''; $email = 'verify@'; $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!'; } ?> </body> </html>
The above is all the content shared by this article. I hope it will be helpful for you to master PHP.
Please take some time to share the article with your friends or leave a comment. We will sincerely thank you for your support!