-
-
Save mikeknoop/2144861 to your computer and use it in GitHub Desktop.
EmailPie Samples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// An invalid domain. | |
// http://emailpie.com/v1/[email protected] | |
{ | |
"didyoumean": null, | |
"errors": [ | |
{ | |
"message": "No MX records found for the domain.", | |
"severity": 7 | |
} | |
], | |
"success": false | |
} | |
// A poorly formatted email. | |
// http://emailpie.com/v1/check?email=invalidemail | |
{ | |
"didyoumean": null, | |
"errors": [ | |
{ | |
"message": "Invalid email address.", | |
"severity": 10 | |
}, | |
{ | |
"message": "No MX records found for the domain.", | |
"severity": 7 | |
} | |
], | |
"success": false | |
} | |
// A good, but possibly misspelled email. | |
// http://emailpie.com/v1/[email protected] | |
{ | |
"didyoumean": "[email protected]", | |
"errors": [], | |
"success": true | |
} | |
// Finally, a good email! | |
// http://emailpie.com/v1/[email protected] | |
{ | |
"didyoumean": null, | |
"errors": [], | |
"success": true | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ch = curl_init(); | |
$params['email'] = '[email protected]'; | |
curl_setopt($ch, CURLOPT_URL, 'http://emailpie.com/v1/check'); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, array('json' => json_encode($params))); | |
curl_setopt($ch, CURLOPT_POST, true); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
$response = curl_exec($ch); | |
curl_close($ch); | |
print_r($response); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import simplejson | |
params = {'email': '[email protected]'} | |
response = requests.get('http://emailpie.com/v1/check', params=params) | |
response = simplejson.loads(response.content) | |
print(response) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# todo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment