如果电子邮件通过 AWS SES 发送到示例域中的地址会怎样?

What happens if emails are sent to addresses at example domains via AWS SES?

虽然我意识到我可以在我的服务器端代码中设置一个黑名单并避免向 RFC 2606 example domains 发送电子邮件,但让我们把它放在一边。

如果我通过 SES 向 test@example.com 等地址发送电子邮件会怎样?

这些域没有 MX 记录,因此电子邮件实际上永远不会到达目的地,但是,假设我通过 SMTP 发送到 SES:

Will it count towards my sending total, for billing purposes?

是的。

SES 按收件人尝试收费,而不是按递送的邮件收费。

Will it count as bounced or anything like that which might negatively affect me?

是的。

Remember that excessive bounces, complaints, and attempts to send low-quality email constitute abuse and put your AWS account at risk of termination.

http://docs.aws.amazon.com/ses/latest/DeveloperGuide/deliverability-and-ses.html

SES 希望您管理您发送到的地址,监控您的退回(意味着任何无法投递的内容)和投诉反馈,从您的列表中删除退回地址。

还有一个全球黑名单,根据所有客户之前的失败交付(硬退回)填充。如果您发送到这些地址之一,他们不会占用资源来尝试交付它,但它仍然算作退回,并且仍然收费。

Emails to addresses on the suppression list will be billed according to the normal Amazon SES pricing plan, except for the data transfer out bandwidth for which you are exempt for the suppressed destinations. This precisely matches the current behavior in the case where emails are sent to invalid addresses not known to have bounced before.

https://aws.amazon.com/blogs/ses/goodbye-blacklist-introducing-the-suppression-list/

但是... mailbox simulator 提供了一组官方测试地址,用于成功测试以及多种类型的反弹。看起来你 可以 使用这些作为你的虚拟地址,如果你真的想要的话。这些不算是退回,但根据文档,它们仍然需要付费。

您可能还会发现 Enforcement FAQ 有用。