Amazon ec2 哪种亚马逊网络服务适合发送电子邮件?

Amazon ec2 哪种亚马逊网络服务适合发送电子邮件?,amazon-ec2,amazon-web-services,Amazon Ec2,Amazon Web Services,我不想运行我自己的邮件服务器,我目前正在开发的应用程序需要向用户发送电子邮件: 当他们注册时(激活电子邮件) cron每3分钟运行一次,检查在此期间哪些用户收到了私人消息,并发送电子邮件通知提醒他们 当他们请求新密码时 每周通讯 在所有这些情况下,电子邮件将由纯文本和简短的大小组成。所以亚马逊给出的使用SES而不是SNS的理由对我不适用 Q: How is Amazon SES different from Amazon SNS? Amazon Simple Email Servi

我不想运行我自己的邮件服务器,我目前正在开发的应用程序需要向用户发送电子邮件:

  • 当他们注册时(激活电子邮件)
  • cron每3分钟运行一次,检查在此期间哪些用户收到了私人消息,并发送电子邮件通知提醒他们
  • 当他们请求新密码时
  • 每周通讯
在所有这些情况下,电子邮件将由纯文本和简短的大小组成。所以亚马逊给出的使用SES而不是SNS的理由对我不适用

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万封(如果应用程序变得流行的话)。简单通知服务会允许吗?哪个服务适合此用例?还是我自己设置邮件服务器更好?

你应该选择SES,因为它是为你的目的而设计的

验证电子邮件地址或域后,您可以请求生产访问权限,并开始每24小时发送多达10000封电子邮件。一旦您开始发送电子邮件,SES将自动计算(并提高)您的发送限制

请查看以了解更多信息:)