Osi*_*ani 1 php installation amazon prototypejs
我想通过亚马逊简单的电子邮件服务设置异步电子邮件服务,但我遇到了一些大问题:
new Ajax.Request('https://email.us-east-1.amazonaws.com/?Action=SendEmail&Source=myemail@domain.com&Destination.ToAddresses.member.1=mydestination@domain.com&Message.Subject.Data=This%20is%20the%20subject%20line.&Message.Body.Text.Data=Hello.%20I%20hope%20you%20are%20having%20a%20good%20day.',
{
method: 'get',
requestHeaders: {"Date": +res["result"]["date"],
"X-Amzn-Authorization":"AWS3-HTTPS",
"AWSAccessKeyId":"myaccesskey",
"SignatureMethod":"mysignature"
"Signature":+res["result"]["auth"]},
Run Code Online (Sandbox Code Playgroud)
我有403错误,所以我想知道亚马逊发生了什么.
日期gmdate('D, d M Y H:i:s e')
是正确的.签名来自hash_hmac('sha256', $date, 'exampleofsignature', false));
请问你能帮帮我吗.我非常感谢您发布示例.
小智 5
如果您利用AWS SDK for PHP来处理请求签名等所有低级细节,那么此功能将完成您尝试执行的操作.
<?php
/**
* Send a plain-text email using Amazon SES.
*
* @link http://docs.amazonwebservices.com/AWSSDKforPHP/latest/#m=AmazonSES/send_email AmazonSES::send_email()
* @param string|array $to (Required) The email address(es) to send to. Accepts a string for one, or an array for multiple.
* @param string $from (Required) The email address of the sender.
* @param string $subject (Required) The subject of the email. US-ASCII characters only!
* @param string $message (Required) The plain-text email to send. US-ASCII characters only!
* @return boolean Whether the request was successful or not.
*/
function send_text_email($to, $from, $subject, $message)
{
$email = new AmazonSES(AWS_KEY, AWS_SECRET_KEY);
$response = $email->send_email($from, //Source (aka From)
array('ToAddresses' => $to), // Destination (aka To)
array( // Message (short form)
'Subject.Data' => $subject,
'Body.Text.Data' => $message
)
);
return $response->isOK(); // boolean
}
?>
Run Code Online (Sandbox Code Playgroud)