I'm using the AWS PHP SDK. I have the following code to send an email using SES:
$ses = new AmazonSES(...);
$response = $ses->send_email('ubuntu@localhost',
array('ToAddresses' => 'myemail@somedomain.com'),
array(
'Subject.Data' => 'My Test message',
'Body.Text.Data' => 'my message'
)
);
Simple enough, right? But I get the following error from the AWS SDK itself:
Undefined index: body
sdk.class.php(828)
// Normalize JSON input
828 if ($query['body'] === '[]')
829 {
830 $query['body'] = '';
831 }
My AWS access and secret keys are correct, since I am able to use S3. What am I missing here?
EDIT: I verified a different email address on @gmail.com, and used that as the from address instead. I still ran into the original bug reported. I had no problem using the third party library I mentioned though.