Is there a way to make all ActionMailer deliveries enqueue a delayed job by default, instead of doing it synchronously?
A:
Subclass ActionMailer
and change the method that sends to use delayed_job
. Now use your own mail class to send mail!
adamse
2010-08-27 21:33:59