Getting mailer working

This commit is contained in:
2012-09-15 23:43:19 -07:00
parent daa202131c
commit cd4f689400
5 changed files with 43 additions and 4 deletions

View File

@@ -1 +1,13 @@
APP_CONFIG = YAML.load_file("#{Rails.root}/config/config.yml")[Rails.env]
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:tls => APP_CONFIG['smtp_tls'],
:address => APP_CONFIG['smtp_address'],
:port => APP_CONFIG['smtp_port'],
:domain => APP_CONFIG['smtp_domain'],
:authentication => APP_CONFIG['smtp_authentication'],
:user_name => APP_CONFIG['smtp_user'],
:password => APP_CONFIG['smtp_password']
}