We're using it at my startup to send emails to users (welcome, password reset, etc.) and have been happy with it. It's worked as advertised, has been reliable, and is dirt cheap.
We used the django-ses app which is great: you "pip install django-ses", set your AWS key and EMAIL_BACKEND and that's it. And it comes with a nice SES dashboard.
The biggest problem is the inability to authorize a domain for sending mail. This is something they've been interested in adding for a while now, but have yet to do so.
If you plan on sending emails using a dynamic FROM field (like support-123434@domain.com) and then parsing replies, then you'll likely have to use something else.
Yes, we are using Amazon SES together with Bouncely (http://bouncely.com) that I built to track bounces. However, Amazon SES still lacks many features.
11 comments
[ 2.7 ms ] story [ 36.7 ms ] threadWe used the django-ses app which is great: you "pip install django-ses", set your AWS key and EMAIL_BACKEND and that's it. And it comes with a nice SES dashboard.
Absolutely essential that you add SPF/Sender ID DNS TXT record for your domain or everything will go to SPAM. That's not SES specific though.
The throttling system they have worries me a bit, but so far hasn't been an issue.
If you plan on sending emails using a dynamic FROM field (like support-123434@domain.com) and then parsing replies, then you'll likely have to use something else.