Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to send email from different accounts on the fly.

Something like this:

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

(from here).

However, I'm also using Delayed Job. Unfortunately, MyMailer.delay.some_message.delivery_method... doesn't work, because MyMailer.delay returns some Delayed Job object. How can I dynamically change SMTP settings while still using Delayed Job?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.