I understand this question is subjective but I want to get a feel for peoples opinions.

For my needs, I want to send out lots of emails to lots of different mailing lists.

Currently, I am trying to pick between:

What do you think?

link|improve this question

33% accept rate
You should not need to use any gem at all. Rails support for STARTTLS works out of the box for Amazon SES. Look at missingbit.blogspot.com/2012/03/… for more details. – Sujoy Gupta Mar 31 at 8:46
feedback

2 Answers

up vote 3 down vote accepted

We're using aws-ses gem in production.

Here's a simple guide how to set up it: http://www.ceban.it/2011/04/rails-amazon-ses-send-email-with-amazon.html

link|improve this answer
Great post. Thanks. Can you share with me any more about your experience? Any pit falls you have discovered for instance? I have held off moving from sendgrid thus far, as switching is giving me a nervous feeling. – Ed_ Apr 14 '11 at 6:03
The only missing feature is that with amazon you don't have a detailed history of what was sent. With postmarkapp, our past provider, for example there's the history with everything: mail body, etc. for sent, bounced, etc, emails. So it's easier to track/debug sent emails if some of your users requests. – Dumitru Ceban Apr 14 '11 at 11:36
Another missing feature is that you can NOT BCC with this gem. This gem invokes the "SendRawEmail" REST API on SES. With the way Mail gem works and how the encoding happens, you can't currently send BCC addresses. – Aditya Sanghi Jan 28 at 8:47
feedback

Just browsing through the code base aws-ses has tests and many more followers. Plus it is actively being maintained. I'd stick with that. SES is new so stay on the lookout I'm sure more options will spring up in the next few months. Good Luck.

link|improve this answer
Both are good reasons. Thanks. – Ed_ Apr 4 '11 at 6:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.