gpt4 book ai didi

php - 亚马逊 SES 错误 : Missing required header 'To'

转载 作者:搜寻专家 更新时间:2023-10-31 21:14:56 25 4
gpt4 key购买 nike

我是 Amazon 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);
?>

在输出中显示:缺少必需的 header “To”,我做错了什么?

最佳答案

我已经解决了,我的代码有两个问题:

  1. 索引“ToAddress”不正确,它必须是复数“ToAddresses”。
  2. 它的值必须是这样的数组:array('mario@wowfi.com')

关于php - 亚马逊 SES 错误 : Missing required header 'To' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11055701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com