views:

45

answers:

1

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