Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
---|---|---|---|
|
Required |
A list of identities. Pass a string for a single value, or an indexed array for multiple values. |
|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
---|---|
A |
Examples
List all verified email addresses.
// Instantiate the class $email = new AmazonSES(); $response = $email->get_identity_verification_attributes(array('you@example.com', 'example.com')); // Success? var_dump($response->isOK());Result:
bool(true)
Source
Method defined in services/ses.class.php | Toggle source view (11 lines) | View on GitHub