2012-06-10 82 views
0

我不想跑我自己的郵件服務器,我目前開發的應用程序需要的郵件被髮送到用戶:哪個Amazon Web服務適合發送電子郵件?

  • 註冊時(激活郵件)
  • 一個cron運行每3分鐘,並檢查哪些用戶在此期間收到了私人信息,併發送電子郵件通知,提醒他們
  • ,當他們申請一個新密碼
  • 週報

在所有這些情況下,電子郵件將由純文本和大小組成。所以亞馬遜給SNS使用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封電子郵件或一百萬(如果應用程序受歡迎)。簡單通知服務會允許嗎?哪種服務適合這種用例?或者我會更好地建立我自己的郵件服務器?

回答

1

你應該去SES,因爲它是爲你的目的而設計的。

在您驗證了您的電子郵件地址或域名後,您可以請求生產訪問並開始每24小時發送多達10,000封電子郵件。一旦您開始發送電子郵件,SES會自動計算(並上升)您的發送限制。

看看Amazon Simple Email Service Developer Guide瞭解更多信息:)

相關問題