Browse Source

Fix for email in preview

development
Godwin 9 years ago
parent
commit
3b531cebd6
  1. 6
      config/environments/preview.rb

6
config/environments/preview.rb

@ -89,13 +89,13 @@ BikeBike::Application.configure do
config.action_mailer.smtp_settings = { config.action_mailer.smtp_settings = {
:enable_starttls_auto => true, :enable_starttls_auto => true,
:address => 'mail.bikebike.org', :address => 'mail.bikebike.org',
:domain => 'bikebike.org', :domain => 'preview.bikebike.org',
:port => 587, :port => 587,
:authentication => :plain, :authentication => :plain,
:enable_starttls_auto => true, :enable_starttls_auto => true,
:openssl_verify_mode => 'none', :openssl_verify_mode => 'none',
:user_name => 'info@bikebike.org', :user_name => 'info@preview.bikebike.org',
:password => 'NewOrleans@)!#' :password => 'test'
} }
config.action_mailer.raise_delivery_errors = true config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true config.action_mailer.perform_deliveries = true

Loading…
Cancel
Save