通过 SMTP 使用 SES(带 SNS)
Use SES (with SNS) over SMTP
我有一个已经使用 SMTP 的小应用程序。
将来我想切换到 AWS SES 并通过 SMTP 使用它。
在 AWS SES 中,我将使用 AWS SNS 来退回邮件。
当我使用 SES over SMTP 和 SNS 进行弹跳时,这是一个问题吗,因为我在文档中找到了这一部分:
Email Information to Provide
When you access Amazon SES through the SMTP interface, your SMTP
client application assembles the message, so the information you need
to provide depends on the application you are using. At a minimum, the
SMTP exchange between a client and a server requires a source address,
a destination address, and message data.
If you are using the SMTP interface and have feedback forwarding
enabled, then your bounces, complaints, and delivery notifications are
sent to the "MAIL FROM" address. Any "Reply-To" address that you
specify is not used.
https://docs.aws.amazon.com/en_en/ses/latest/DeveloperGuide/send-email-smtp.html
现在我有些怀疑,当我切换到 SES SMTP 时,我必须自己处理弹跳,SNS 将被忽略。这是正确的还是 SNS 总是被使用? (通过 API 和 SMTP)?
如果您使用 SNS 处理投诉和退回邮件,您可以禁用电子邮件通知。
请参阅此处的第 6 步:https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-sns-notifications.html
If you choose Amazon SNS topics for both bounces and complaints, you
can disable email notifications entirely. To disable email
notifications for bounces and complaints, under Email Feedback
Forwarding, choose Disable. Delivery notifications are available only
through Amazon SNS.
我有一个已经使用 SMTP 的小应用程序。
将来我想切换到 AWS SES 并通过 SMTP 使用它。
在 AWS SES 中,我将使用 AWS SNS 来退回邮件。
当我使用 SES over SMTP 和 SNS 进行弹跳时,这是一个问题吗,因为我在文档中找到了这一部分:
Email Information to Provide
When you access Amazon SES through the SMTP interface, your SMTP client application assembles the message, so the information you need to provide depends on the application you are using. At a minimum, the SMTP exchange between a client and a server requires a source address, a destination address, and message data.
If you are using the SMTP interface and have feedback forwarding enabled, then your bounces, complaints, and delivery notifications are sent to the "MAIL FROM" address. Any "Reply-To" address that you specify is not used.
https://docs.aws.amazon.com/en_en/ses/latest/DeveloperGuide/send-email-smtp.html
现在我有些怀疑,当我切换到 SES SMTP 时,我必须自己处理弹跳,SNS 将被忽略。这是正确的还是 SNS 总是被使用? (通过 API 和 SMTP)?
如果您使用 SNS 处理投诉和退回邮件,您可以禁用电子邮件通知。
请参阅此处的第 6 步:https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-sns-notifications.html
If you choose Amazon SNS topics for both bounces and complaints, you can disable email notifications entirely. To disable email notifications for bounces and complaints, under Email Feedback Forwarding, choose Disable. Delivery notifications are available only through Amazon SNS.