我是亚马逊SES的新手,我正在尝试使用此代码发送电子邮件:
<?php
require_once 'aws/sdk.class.php';
$ses = new AmazonSES();
$to = array('ToAddress' => 'mario@wowfi.com');
$content = array('Subject.Data' => 'Tema', 'Body.Text.Data' => 'hello');
$r = $ses->send_email("mario@wowfi.com", $to , $content);
print_r($r);
?>
在输出中它说:缺少必需的标题'To',我做错了什么?
答案 0 :(得分:2)
我已经解决了,我的代码中有两个问题: