
Enter your public API key to begin validation.
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 user.name.abc@yahoo.com 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.
user@some-random-characters.com can’t escape.anything@example.com is caught.small@gmail.com and hyphen-user@gmail.com 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.