I saw this post but mine is slightly different:

http://stackoverflow.com/questions/1559879/rails-actionmailer-with-multiple-smtp-servers

I am allowing the users to send mail using their own SMTP credentials so it actually does come from them.

But they will be sent from the Rails app, so that means for each user I need to send their emails using their own SMTP server.

How can I do that?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Just set the ActionMailer::Base configuration values before each send action.

smtp_config = user.smtp_configuration

ActionMailer::Base.username = smtp_config.username
ActionMailer::Base.password = smtp_config.password
ActionMailer::Base.server = ..
ActionMailer::Base.port = ..
ActionMailer::Base.authentication = ..
link|improve this answer
How do I do that? ActionMailer configs are in the config file...Creating a local variable called smtp_config and then pass the respective methods? – Angela Apr 23 '10 at 0:48
1  
SO just lost my previous answer, so trying again with a shorter note. You are just setting ActionMailer class variables in those calls. Typically they are defined in the configs, but you can change them anytime you want. In your case you want to set them before every ActionMailer child class's deliver_XXX method that you need to call. – simianarmy May 12 '10 at 15:34
feedback

Doing what is described in the other answer is not safe; you are setting class variables here, not instanced variables. If your Rails container is forking, you can do this, but now your application is depending on an implementation detail of the container. If you're not forking a new Ruby process, then you can have a race condition here.

You should have a model that is extending ActionMailer::Base, and when you call a method, it will return a Mail::Message object. That is your instance object and is where you should change your settings. The settings are also just a hash, so you can inline it.

msg = MyMailer.some_message
msg.delivery_method.settings.merge!(@user.mail_settings)
msg.deliver

Where in the above mail_settings returns some hash with appropriate keys IE

{:user_name=>username, :password=>password}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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