How to retrieve response from Amazon SES?
问题 I have the code to verify email address in Amazon ses <?php $sesClient = SesClient::factory(array( 'key' => 'secret key', 'secret' => 'secret', 'profile' => 'user_name', 'region' => 'us-east-1' )); $result = $sesClient->verifyEmailAddress(array('EmailAddress'=> $email)); ?> My output for $result is like this: object(Guzzle\Service\Resource\Model) { [protected] structure => null [protected] data => array() } I actually got verified email in the email id I have specified. My question is, how to