英文:
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 <YOUR_REGION>
To re-enable sending:
aws ses update-account-sending-enabled --enabled --region <YOUR_REGION>
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论