gpt4 book ai didi

php - 无法使用 amazon ses 将电子邮件发送到其他域

转载 作者:行者123 更新时间:2023-12-05 02:21:26 27 4
gpt4 key购买 nike

如何通过亚马逊简单的电子邮件服务发送邮件。

我已经为我的域设置了我的 amazon simple email services 帐户并验证了它,但我只能将电子邮件发送到与我的域相关的电子邮件 ID,例如 username@mydomain.com 。我无法将电子邮件发送到其他域,如 username@gmail.comusername@yahoo.com 等。如果我必须做一些与我的相关的事情,请告诉我亚马逊网络服务帐户。

$config = Array(
'protocol' => 'mail',
'protocol' => 'smtp',
'smtp_host' => email-smtp.us-east-1.amazonaws.com,
'smtp_port' => 465,
'smtp_user' => ##############,
'smtp_pass' => ###########################,
'mailtype' => 'html',
'charset' => 'iso-8859-1'
);

$this->load->library('email');
$this->email->initialize($config);
$this->email->set_newline("\r\n");
$this->email->from(user@mydomain.com, 'User');
$this->email->to($to);
$this->email->subject($subject);
$this->email->message($message);

最佳答案

完成设置和测试后,您需要 request to be removed from Sandbox Mode and be granted production access .

To help protect our customers from fraud and abuse and to help you establish your trustworthiness to ISPs and email recipients, we do not immediately grant unlimited Amazon SES usage to new users. New users are initially placed in the Amazon SES sandbox.

沙盒模式的限制:

You can only send mail to the Amazon SES mailbox simulator and to verified email addresses and domains.

申请生产访问权限有两种方式,一种是打开支持案例,另一种是提交申请表,这两种方式均在 http://docs.aws.amazon.com/ses/latest/DeveloperGuide/request-production-access.html 中进行了讨论。 .

关于php - 无法使用 amazon ses 将电子邮件发送到其他域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34353052/

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