Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 26th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. rails 3: how can my app send from multiple email accounts?
  2. ActionMailer::Base.smtp_settings = {
  3.   :address => "smtp.example_host.com",
  4.   :port => '25',
  5.   :domain => "example_send_from.com",
  6.   :authentication => :plain,
  7.   :user_name => "send_account_name",
  8.   :password => ENV['MY_EMAIL_SEND_PWD']
  9. }
  10.        
  11. class Mailer1 < ....
  12.   self.smtp_settings = { .... }
  13. end