我不想运行自己的邮件服务器,我目前正在开发的应用程序需要将电子邮件发送给用户:
在所有这些情况下,电子邮件将由纯文本和较短的大小组成。所以亚马逊给出的使用SES的理由并不适用于我。
Q: How is Amazon SES different from Amazon SNS?
Amazon Simple Email Service (Amazon SES) is for applications that need to send arbitrary communications via email. Amazon SES supports custom email header fields, and many MIME types.
By contrast, Amazon Simple Notification Service (Amazon SNS) is for messaging-oriented applications, with multiple subscribers requesting and receiving "push" notifications of time-critical messages via a choice of transport protocols, including HTTP, Amazon SQS, and email. The body of an Amazon SNS notification is limited to 8192 characters of UTF-8 strings, and is not intended to support multimedia content.我主要关心的是哪种服务可以让我发送尽可能多的电子邮件。在AWS控制台上的SES选项卡中,它说你每24小时只能发送200封电子邮件。
我需要根据需要发送电子邮件。它可以是0封电子邮件,也可以是100万封(如果应用程序变得流行的话)。简单通知服务会允许这样做吗?哪个服务适合这个用例?还是我最好设置自己的邮件服务器?
发布于 2012-06-11 07:41:22
你应该和SES一起去,因为这是为了你的目的而做的。
在您验证您的电子邮件入口或域名后,您可以请求生产访问,并开始发送多达10,000封电子邮件每24小时。当你开始发送电子邮件时,SES会自动计算(并提高)你的发送限制。
请查看Amazon简单电子邮件服务开发人员指南以获得更多信息:)
https://stackoverflow.com/questions/10970396
复制相似问题