- Which are the smtp_settings for sending email with an account that uses Exchange?
- config.action_mailer.smtp_settings = {
- :enable_starttls_auto => true,
- :address => 'smtp',
- :port => 995,
- :domain => 'domain',
- :user_name => 'username',
- :password => 'password',
- :authentication => :plain,
- }