Given a Mailer instance in Rails 3, is there a way to override the delivery_method on it?
I want to push certain emails out through a high-priority transport, and others use a busier, low-priority method.
I can adjust the config at runtime and change it back again, but this is fraught with potential side-effects.
:queueddelivery method (into Resque, which does some additional tracking) and then from Resque I need to send them out over SMTP. It turns out settingdelivery_method(class method) from within a subclass ofActionMailer::Basedoes not actually have a global impact and does what I need :) We send other emails via our Resque queue, so I didn't want to change that entire environment (I know I could configure different workers differently). – d11wtq Aug 28 '11 at 2:05