Deletes the specified email address from the list of verified addresses.
The DeleteVerifiedEmailAddress action is deprecated as of the May 15, 2012 release of Domain Verification. The DeleteIdentity action is now preferred.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
---|---|---|---|
|
Required |
An email address to be removed from the list of verified addresses. |
|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
---|---|
A |
Examples
Delete a verified email address.
// Instantiate the class $email = new AmazonSES(); $response = $email->delete_verified_email_address('you@example.com'); // Success? var_dump($response->isOK());Result:
bool(true)
Related Methods
Source
Method defined in services/ses.class.php | Toggle source view (7 lines) | View on GitHub