当我向特定地址发送电子邮件时遇到退信

I'm getting bounce when I send an email to a specific address

当我使用 SES 将电子邮件发送到特定地址时,我收到了退信,邮件从 gmail 正确发送

对于瞬态 -> 一般 AWS 说 The recipient's email provider sent a general bounce message. You might be able to send a message to the same recipient in the future if the issue that caused the message to bounce is resolved. 如果我不知道问题所在,如何解决问题?

"eventType":"Bounce",
"bounce":{
"bounceType":"Transient",
"bounceSubType":"General",
"bouncedRecipients":[
{
"emailAddress":"{some_email}",
"action":"failed",
"status":"5.7.8",
"diagnosticCode":"smtp; 535 5.7.8 Error: blocked by Block Address check from 54.240.8.90"
}
],
"timestamp":"2019-07-03T19:48:56.445Z",
"feedbackId":"0100016bb962013a-6cd68815-3c51-4216-9946-50f01b923057-000000",
"reportingMTA":"dsn; a8-90.smtp-out.amazonses.com"
}

你能做的不多,好像收件方正在检查IP信誉,发现SES IP(发送IP)54.240.8.90在黑名单中,它还用自定义消息给你退回"smtp; 535 5.7.8 Error: blocked by Block Address check from 54.240.8.90".

他们似乎在使用 SORBS 垃圾邮件。

https://mxtoolbox.com/SuperTool.aspx?action=blacklist%3a54.240.8.90&run=toolpage

http://www.sorbs.net/cgi-bin/db

您可以尝试几件事:

  1. 自行从SORBS中删除IP(可能会再次添加)

  2. 联系AWS联系他们将其从黑名单中移除。

  3. 尝试专用 IP 池。