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.

link|improve this question

While you should get a real error, have you validated both the To and From addresses for sending? You'll need to do that while you're in the dev sandbox. Also, SES is super-new, and I think they pushed a new copy of the SDK last week, so that's worth checking... – Charles Mar 21 '11 at 3:38
How do I validate the email address? I added a call for $ses->verify_email_address, but nothing changed. ubuntu@localhost is a user I have running on a local ubuntu instance. – Simian Mar 21 '11 at 3:42
It has to be a publicly-accessible email address that SES can send to. – Skyler Johnson Mar 27 '11 at 4:38
feedback

3 Answers

up vote 6 down vote accepted

UPDATE: This bug is now patched! Please download the latest version.

This seems to be a confirmed bug in the Amazon SDK. See link below...

https://forums.aws.amazon.com/thread.jspa?messageID=231411

As far as I can tell, there is no patch for this yet. I suppose you could patch it yourself using isset(). That's what I did, and it seems to work now. Again, this is a bug in sdk.class.php on line 828. I don't feel like making a patch file right now. Here's what I did to the code, though...

// Normalize JSON input
if (!isset($query['body']) || $query['body'] === '[]')
{
    $query['body'] = '';
}

Again, not an official patch, but it lets you go on your happy way.

link|improve this answer
1  
Patched in version 1.3.1. – Skyler Johnson Mar 27 '11 at 4:39
feedback

I would guess that you need a non-private email address which ubuntu@localhost clearly isn't.

(edit) Also from the documentation you need to verify that you are the owner of said email address, which you clearly cannot do with ubuntu@localhost.

Email Address Verification

Before you can send your first message, Amazon SES requires that you verify your email address. This is to confirm that you own the email address, and to prevent others from using it.

http://docs.amazonwebservices.com/es/latest/DeveloperGuide/index.html?InitialSetup.EmailVerification.html

link|improve this answer
Yes, I did add the verify email call with an external email address. The problem still persisted, and I never received the verification email. – Simian Mar 21 '11 at 5:54
@Simian because if you tried to verify ubuntu@localhost that localhost will be Amazon's SES server address and your account is not there. – Steve-o Mar 21 '11 at 5:56
No, I meant 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. – Simian Mar 21 '11 at 6:10
feedback

This may be a bug in the Amazon SDK. This wouldn't be the first time.

I've instead opted to use an excellent third party library:

https://github.com/kierangraham/php-ses

And its documentation: http://www.orderingdisorder.com/aws/ses/

Works like a charm.

link|improve this answer
Found this SDK to be very slow and creates FastCGI timeouts. I'm trying to send about 500 emails at a time, but timesout between 30 and 40. Have requested help with this... – andrebruton Feb 22 at 8:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.