我正在对 Amazon Web Services (SES) 的 sanbox 帐户进行一些测试。我必须维护每封电子邮件的送达报告(送达、投诉、退回、拒绝)。我有消息ID。你能告诉我如何使用消息 ID 找出电子邮件的传递状态吗?
提前致谢。
我正在对 Amazon Web Services (SES) 的 sanbox 帐户进行一些测试。我必须维护每封电子邮件的送达报告(送达、投诉、退回、拒绝)。我有消息ID。你能告诉我如何使用消息 ID 找出电子邮件的传递状态吗?
提前致谢。
You can be notified either via email or SNS about bounces/complaints etc.
To get SNS notifications, read this: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-sns-notifications.html
to get email notifications read this: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-email.html
你可以参考这个页面。 https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity-api.html
总之,您可以使用 GetSendStatistics API 来解决您的问题。希望它对你有帮助。
谢谢。