vote up 1 vote down star

I have a need to use two different smtp servers in a Rails application. It appears that the way ActionMailer is constructed, it is not possible to have different smtp_settings for a subclass. I could reload the smtp settings for each mailer class whenever a message is being sent, but that messes up the ExceptionNotifier plugin which is outside my control (unless I mess with it too). Does anyone have a solution/plugin for something like this?

Ideally I would like to have

class UserMailer < ActionMailer::Base; end

and then set in environment.rb

ActionMailer::Base.smtp_settings = standard_smtp_settings
UserMailer.smtp_settings = user_smtp_settings

Thus, most of my mailers including ExceptionNotifier would pickup the default settings, but the UserMailer would use a paid relay service.

flag

1 Answer

vote up 0 vote down

I'm afraid it's not doable natively.
But you can trick it a bit by modifying the @@smtp_settings variable in the model.

There's an article on Oreilly which explains it pretty well even though they code is not clean at all. http://broadcast.oreilly.com/2009/03/using-multiple-smtp-accounts-w.html

link|flag
Thanks for the reply. I saw that article, and that is what I meant by reload the smtp settings before each mail (which is what the article did in the load_settings method). This is close to a solution, but it messes up ExceptionNotifier because I cannot reload the settings for it without changing the plugin. I was hoping there for something more maintainable. – marcus Oct 13 at 20:55
Unfortunately, because of the way it is implemented, it's not possible. – Damien MATHIEU Oct 14 at 6:20

Your Answer

Get an OpenID
or

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