dwyl / sendemail

💌 Simplifies reliably sending emails from your node.js apps using AWS Simple Email Service (SES)
181 stars 26 forks source link

Amazon Simple Email Service #30

Closed nelsonic closed 8 years ago

nelsonic commented 8 years ago

AWS offers a Simple Email Service (SES) which competes with other email service providers.

Email messages are charged at _$0.10 per 1,000_ but importantly there is no minimum fee (i.e: pay-as-you-go) https://aws.amazon.com/ses/pricing/

By comparison, SendGrid price per email is _$0.24875 per 1000 (cheapest plan) but goes down to **$0.1995 per 1000_ if you pay them $19.95 per 100k** monthly regardless of how many you send

SES also has an inbound email feature which means you can receive emails and pass them on to a Lambda function for processing ...

Useful Links:

nelsonic commented 8 years ago

Answer this SO Q once we have updated: http://stackoverflow.com/questions/5692839/node-js-send-e-mails-using-aws-ses

nelsonic commented 8 years ago

aws-ses-attachement-example

nelsonic commented 8 years ago

Testing: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mailbox-simulator.html

nelsonic commented 8 years ago

@iteles can you add to this: http://stackoverflow.com/a/37628885/1148249 ?