We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e788f commit ec0ae4bCopy full SHA for ec0ae4b
src/Actions/Email.php
@@ -216,6 +216,24 @@ public function Status($messageID)
216
));
217
}
218
219
+ /**
220
+ * Verify single email address
221
+ *
222
+ * @param string $email Email address to verify
223
+ * @param bool $updateStatus Update contact's status be changed automatically based on the validation result
224
+ * @param bool $uploadContacts Create contact if it does not exist
225
226
+ * @return EmailValidation
227
+ */
228
+ public function Verify($email, $updateStatus = false, $uploadContacts = false)
229
+ {
230
+ return $this->request('email/verify', array(
231
+ 'email' => $email,
232
+ 'updateStatus' => $updateStatus,
233
+ 'uploadContacts' => $uploadContacts
234
+ ));
235
+ }
236
+
237
/**
238
* View email
239
*
0 commit comments