We'll create fresh WordPress site with Mailgun Email Validator installed. You have 20 minutes to test the plugin after that site we'll be deleted.
Most email validators look for an @
and a .
(dot) some go further and blacklist certain domain names. But Mailgun’s Advanced email validation service goes deeper and looks for the existence of the domain name, presence of a MX record and the custom ESP(Email Service Provider) grammar.
The grammar here is the rules defined by each email provider. For example, Yahoo Mail addresses can only contain letters, numbers, underscores, and one period.
So [email protected]
perfectly passes the is_email() function but can never exist as it contains more than one period. Such addresses can’t escape Mailgun’s Email validation.
[email protected]
can’t escape.[email protected]
is caught.[email protected]
and [email protected]
can’t get away.is_email()
function.This plugin requires a Mailgun Public API Key which can be obtained by signing up at Mailgun.
If you’re trying out this plugin on a local WAMP/LAMP/MAMP installation make sure your system is connected to the Internet for this plugin to contact Mailgun.
Read about Mailgun’s email validation service.