【发布时间】:2017-12-30 04:08:21
【问题描述】:
经过平常的拉头发努力,我终于通过将AWSSimple Email Service推送到我的REST end point >SNS 并成功地将所需的业务逻辑应用于这些收件人。
积分:
您必须向该收件人推送多封电子邮件,这就是 SNS 推送多个(唯一)退回通知的原因。 是的。而且每个通知都有自己的“messageId”
但是为什么我会反复收到单个收件人的退回通知,为什么没有其他错误的收件人。?
附上回复/s:
{
"notificationType": "Bounce",
"bounce": {
"bounceType": "Permanent",
"bounceSubType": "Suppressed",
"bouncedRecipients": [
{
"emailAddress": "abc.xyz.aws@gmail.com",
"action": "failed",
"status": "5.1.1",
"diagnosticCode": "Amazon SES has suppressed sending to this ..."
}
],
"timestamp": "2017-12-28T07:06:37.106Z",
"feedbackId": "010101609bef62ff-0f30cac8-ec3c-41f3-9eee-5f7d90ef3c46-000000",
"reportingMTA": "dns; amazonses.com"
},
"mail": {
"timestamp": "2017-12-28T07:03:44.000Z",
"source": "abcXYZ@gmail.com",
"sourceArn": "arn:aws:ses:com-xyz-9:9696845301:identity/abcXYZ@gmail.com",
"sourceIp": "10.eee.ppq.lmn",
"sendingAccountId": "12365498512",
"messageId": "010101609bf1b35c-889e815e-b84c-4b08-a283-ee5f3e9740f2-000000",
"destination": ["abc.xyz.aws@gmail.com"]
}
}
Another one and all others:
{
"notificationType": "Bounce",
"bounce": {
"bounceType": "Permanent",
"bounceSubType": "Suppressed",
"bouncedRecipients": [
{
"emailAddress": "abc.xyz.aws@gmail.com",
"action": "failed",
"status": "5.1.1",
"diagnosticCode": "Amazon SES has suppressed sending to this ..."
}
],
"timestamp": "2017-12-28T07:06:37.106Z",
"feedbackId": "010101609befa8f5-a41662a5-b84e-4048-bc3a-d1f1469c8f1a-000000",
"reportingMTA": "dns; amazonses.com"
},
"mail": {
"timestamp": "2017-12-28T07:04:05.192Z",
"source": "abcXYZ@gmail.com",
"sourceArn": "arn:aws:ses:com-xyz-9:9696845301:identity/abcXYZ@gmail.com",
"sourceIp": "10.eee.ppq.lmn",
"sendingAccountId": "12365498512",
"messageId": "010101609bef61bb-310b4f29-0b01-4ecd-b763-b295e26d0732-000000",
"destination": ["abc.xyz.aws@gmail.com"]
}
}
更多信息:
HTTP 端点是基于 Spring MVC 的 REST 控制器。
搜索:
通过搜索我找到了这些:
1-Duplicate delivery/bounce notifications being sent to my SNS topic?
2-Emails being sent multiple times - can I see AWS logs ?
请任何人帮助/指导或指出可能是什么问题?
希望你们度过了一个愉快的假期。
【问题讨论】:
标签: amazon-web-services amazon-sns amazon-ses