554事务失败错误:发送已暂停此帐户。

huangapple go评论58阅读模式
英文:

554 transcation failed error : sending paused for this account

问题

我正尝试通过 AWS SMTP 服务器发送电子邮件,在 transport.send 处出现错误,显示发送已暂停此帐户。

英文:

I am trying to send an email via aws smtp server at line transport.send it gives the error sending is paused for this account

答案1

得分: 1

发送在我的SES帐户中暂停了,但我没有收到来自AWS的任何通知。我的账户状态良好,但当我尝试发送时,一直收到相同的错误:AccountSendingPausedException(客户端):此帐户的发送已暂停。我使用aws CLI进行了修复,并运行了以下命令:

要查看发送是否已启用:

aws ses get-account-sending-enabled --region <YOUR_REGION>

要重新启用发送:

aws ses update-account-sending-enabled --enabled --region <YOUR_REGION>

请将<YOUR_REGION>替换为您的SES服务所在的区域,例如 us-east-2

英文:

Sending got paused for my SES account and I didn't get any notification from AWS. My account was healthy but when I tried sending I kept getting the same error: AccountSendingPausedException (client): Sending is paused for this account. I've fixed it using the aws CLI and running the following commands:

To see if sending is enabled:

aws ses get-account-sending-enabled --region &lt;YOUR_REGION&gt;

To re-enable sending:

aws ses update-account-sending-enabled --enabled --region &lt;YOUR_REGION&gt;

Replace <YOUR_REGION> with the region of your SES service, for example us-east-2

答案2

得分: 0

错误是因为电子邮件反弹,因此我的 SMTP 服务器被 AWS 阻止了。通过创建新的 SMTP 错误来解决了这个问题。

英文:

The error was because of bouncing emails and therefore my smtp server was stopped by aws . Solved the error by creating new smtp error.

huangapple
  • 本文由 发表于 2020年10月5日 12:50:07
  • 转载请务必保留本文链接:https://go.coder-hub.com/64202637.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定