Skip to content

Instantly share code, notes, and snippets.

@noam-sc
Created April 13, 2018 12:48
Show Gist options
  • Save noam-sc/ee2897c45949d1f2745b2bd3f88bb132 to your computer and use it in GitHub Desktop.
Save noam-sc/ee2897c45949d1f2745b2bd3f88bb132 to your computer and use it in GitHub Desktop.
Validate an email with PHP
if(!filter_var($mail_to_check, FILTER_VALIDATE_EMAIL)) {
// Invalid mail
} else {
// Valid mail
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment