-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMailgunValidator.php
75 lines (61 loc) · 1.91 KB
/
MailgunValidator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php namespace overint;
/**
* Validate email address with Mailgun's validation service (Syntax checks, DNS validation, MX validation)
*/
class MailgunValidator
{
/** @var string Mailgun API endpoint URL */
const API_ENDPOINT = 'https://api.mailgun.net/v3/address/validate';
/** @var string Mailgun email validation API key */
private $apiKey;
/**
* MailgunValidator constructor.
* @param string $apiKey Mailgun email validation API key
*/
function __construct($apiKey)
{
$this->apiKey = $apiKey;
}
/**
* Use curl to send the validation request to Mailgun
* @param string $email
* @return array
*/
private function queryMailgun($email)
{
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => self::API_ENDPOINT . "?api_key=" . $this->apiKey . "&address=" . urlencode($email) . '&mailbox_verification=true',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_MAXREDIRS => 0,
CURLOPT_TIMEOUT => 30,
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
throw new \Exception('Curl Error: ' . $err);
} else {
return json_decode($response);
}
}
/**
* Validate an email address and return a boolean indicating validity
* @param string $email Email adddress to be validated
* @return boolean
*/
public function validate($email)
{
$ret = $this->queryMailgun($email);
return $ret->is_valid === true && $ret->mailbox_verification !== false;
}
/**
* Validate an email address and return a detailed infomation from Mailgun
* @param string $email Email adddress to be validated
* @return array
*/
public function validateExtended($email)
{
return $this->queryMailgun($email);
}
}