3

我正在使用 AWS PHP 开发工具包。我有以下代码使用 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'
            )
        );

很简单,对吧?但我从 AWS 开发工具包本身收到以下错误:

Undefined index: body

sdk.class.php(828)

// Normalize JSON input
828         if ($query['body'] === '[]')
829         {
830             $query['body'] = '';
831         }

我的 AWS 访问密钥和密钥是正确的,因为我可以使用 S3。我在这里想念什么?

编辑:我在@gmail.com 上验证了一个不同的电子邮件地址,并将其用作发件人地址。我仍然遇到了报告的原始错误。不过,我使用我提到的第三方库没有问题。

4

4 回答 4

8

更新:此错误现已修复!请下载最新版本。

这似乎是 Amazon SDK 中已确认的错误。请看下面的链接...

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

据我所知,目前还没有补丁。我想你可以使用 isset() 自己修补它。这就是我所做的,现在它似乎工作了。同样,这是第 828 行 sdk.class.php 中的一个错误。我现在不想制作补丁文件。这是我对代码所做的,不过......

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

同样,不是官方补丁,但它可以让您继续快乐。

于 2011-03-25T20:00:24.823 回答
1

ubuntu@localhost我猜你需要一个显然不需要的非私人电子邮件地址。

(编辑)另外,您需要从文档中验证您是所述电子邮件地址的所有者,您显然无法使用ubuntu@localhost.

电子邮件地址验证

在您发送第一条消息之前,Amazon SES 要求您验证您的电子邮件地址。这是为了确认您拥有该电子邮件地址,并防止其他人使用它。

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

于 2011-03-21T05:27:58.267 回答
1

这是我在没有 SDK 的情况下如何做到的:

<?php

error_reporting(E_ALL);
ini_set('display_errors','On');

// AMAZON PARAMETERS
$sAccess = 'YOUR-ACCESS-KEY-GOES-HERE';
$sSecret = 'YOUR-SECRET-KEY-GOES-HERE';
$sURL = 'https://email.us-east-1.amazonaws.com/'; // may be subject to change!
$nVerifyHost = 1; // may need to set either of these to 0 on some hosting plans
$nVerifyPeer = 1;

// OUR TEST MESSAGE
$sTo = 'you@example.com'; // must request production mode in AWS SES Console
$sFrom = 'sender@example.com'; // must verify the sender in the AWS SES Console
$sSubject = 'Hello, World!';
$sMessage = <<<EOD
<p>This is para 1.</p>

<p>This is para 2.</p>

<p>Regards,<br>
<b>Management</b></p>
EOD;

// SEND THE MESSAGE
$sDate = gmdate('D, d M Y H:i:s e');
$sSig = base64_encode(hash_hmac('sha256', $sDate, $sSecret, TRUE));
$asHeaders = array();
$asHeaders[] = 'Date: ' .  $sDate;
$asHeaders[] = 'X-Amzn-Authorization: AWS3-HTTPS AWSAccessKeyId=' . $sAccess . 
  ',Algorithm=HmacSHA256,Signature=' . $sSig;
$asHeaders[] = 'Content-Type: application/x-www-form-urlencoded';
$sText = $sMessage;
$sText = str_replace("\r\n",'',$sText);
$sText = str_replace("\r",'',$sText);
$sText = str_replace("\n",'',$sText);
$sText = str_replace("\t",'  ',$sText);
$sText = str_replace('<BR />','<br />',$sText);
$sText = str_replace('<BR/>','<br />',$sText);
$sText = str_replace('<BR>','<br />',$sText);
$sText = str_replace('</P>','</p>',$sText);
$sText = str_replace('</p>',"</p>\n\n",$sText);
$sText = str_replace('<br />',"<br />\n",$sText);
$sText = strip_tags($sText);
$asQuery = array(
  'Action' => 'SendEmail',
  'Destination.ToAddresses.member.1' => $sTo,
  'Source' => $sFrom,
  'Message.Subject.Data' => $sSubject,
  'Message.Body.Text.Data' => $sText,
  'Message.Body.Html.Data' => $sMessage
);
$sQuery = http_build_query($asQuery);

$hCurl = curl_init();
curl_setopt($hCurl, CURLOPT_SSL_VERIFYHOST, $nVerifyHost);
curl_setopt($hCurl, CURLOPT_SSL_VERIFYPEER, $nVerifyPeer);
curl_setopt($hCurl, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($hCurl, CURLOPT_POSTFIELDS, $sQuery);
curl_setopt($hCurl, CURLOPT_HTTPHEADER, $asHeaders);
curl_setopt($hCurl, CURLOPT_HEADER, 0);
curl_setopt($hCurl, CURLOPT_URL, $sURL);
curl_setopt($hCurl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($hCurl, CURLOPT_FOLLOWLOCATION, 1);

$asResult = array('code'=>'','error'=>'');
if (curl_exec($hCurl)) {
  $asResult['code'] = curl_getinfo($hCurl, CURLINFO_HTTP_CODE);
} else {
  $asResult['error'] = array (
    'code' => curl_errno($hCurl),
    'message' => curl_error($hCurl),
  );
}
@curl_close($hCurl);
print_r($asResult);
于 2012-09-26T02:05:30.947 回答
0

这可能是 Amazon SDK 中的错误。这不会是第一次。

相反,我选择使用优秀的第三方库:

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

及其文档: http ://www.orderingdisorder.com/aws/ses/

奇迹般有效。

于 2011-03-21T04:15:03.757 回答