[Rails] Re: Best practices for email delivery in production

2011-02-09 Thread Travis Reeder
Hi Amy, you might want to try SimpleWorker at http://www.simpleworker.com , great for sending emails (or doing anything in batch) and very easy to use, no setup required. Here's a sample email worker:

[Rails] Re: Best practices for email delivery in production

2011-01-15 Thread John Maxwell
Have a look at running some kind of delayed job queue - I use Resque normally, which I think comes from GitHub. With Resque, and ResqueMailer (another gem) you can simply include Resque::Mailer in your mailers to have them automatically queued for delivery. Hope that helps. -- You received

[Rails] Re: Best practices for email delivery in production

2011-01-15 Thread Amy Eastwood
Is there a way to use beanstalkd and stalker to replicate ar_sendmail functionality? On Jan 16, 3:49 am, John Maxwell jgwmaxw...@gmail.com wrote: Have a look at running some kind of delayed job queue - I use Resque normally, which I think comes from GitHub. With Resque, and ResqueMailer