Advanced jQuery Email Address Validator by Mailgun
Given an arbitrary address, Mailgun will validate the address based on:
- Syntax checks (RFC defined grammar)
- DNS validation
- Spell checks
- Email Service Provider (ESP) specific local-part grammar (if available)
How to use the email validator on your form
- Include jQuery
- Include mailgun_validator.js
- Sign up for a Mailgun account and insert your public API key
- Attach mailgun_validator() function to the email field you want validated
- Decide what should happen for valid emails, invalid emails and suggestions
Attaching to a form field:
$('jquery_selector').mailgun_validator({
api_key: 'api-key',
in_progress: in_progress_callback, // called when request is made to validator
success: success_callback, // called when validator has returned
error: validation_error, // called when an error reaching the validator has occured
});
Sample JSON in success callback:
{
"is_valid": true,
"parts": {
"local_part": "[email protected]",
"domain": "example.com",
"display_name": ""
},
"address": "[email protected]",
"did_you_mean": null
}
Demo
http://mailgun.github.io/validator-demo/