【发布时间】:2019-03-11 19:18:34
【问题描述】:
尝试通过 Amazon SES 发送电子邮件。域和电子邮件都已验证,帐户已退出沙盒(前一段时间一直在使用它没有问题),并且要求 > 正确设置。从 Laravel 5.4 开始尝试
现在是
SesException in WrappedHttpHandler.php line 192:
Error executing "SendRawEmail" on "https://email.eu-west-1.amazonaws.com"; AWS HTTP error: Client error: `POST https://email.eu-west-1.amazonaws.com` resulted in a `400 Bad Request` response:
<ErrorResponse xmlns="http://ses.amazonaws.com/doc/2010-12-01/">
<Error>
<Type>Sender</Type>
<Code>MessageReje (truncated...)
MessageRejected (client): Email address is not verified. The following
identities failed the check in region EU-WEST-1: service@civilhang.ro -
<ErrorResponse xmlns="http://ses.amazonaws.com/doc/2010-12-01/">
<Error>
<Type>Sender</Type>
<Code>MessageRejected</Code>
<Message>Email address is not verified. The following identities failed the
check in region EU-WEST-1: service@civilhang.ro</Message>
</Error>
<RequestId>82e11e14-c1fc-11e7-9836-57d1bfe12a45</RequestId>
</ErrorResponse>
有人知道吗?
【问题讨论】:
-
SES 区域(大部分)是独立的。该地址必须在您连接到的区域中进行验证。检查这个?您正在调用 eu-west-1。你是在哪里通过验证的吗?
-
yessss,已验证,我检查了 1000 次。请记住,这很有效,我没有修改任何东西。刚刚注意到突然没有邮件通过了。
标签: amazon-web-services laravel-5 amazon-ses