Skip to content

Instantly share code, notes, and snippets.

@stefpe
Created April 14, 2019 20:06
Show Gist options
  • Save stefpe/cdb6b5778e9b9e56524d64238b022838 to your computer and use it in GitHub Desktop.
Save stefpe/cdb6b5778e9b9e56524d64238b022838 to your computer and use it in GitHub Desktop.
<?php
function validateMail(string $email): bool
{
$parts = explode("@", $email);
$host = end($parts);
return checkdnsrr($host, 'MX');
}
$email = '[email protected]';
validateMail($email);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment