From a82f377551bfe0197758e1b44cd8c79404e5b10f Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Thu, 13 Oct 2011 10:03:55 +0100 Subject: [PATCH] Corrected mailer hostname. --- config/environments/development.rb | 2 +- config/environments/production.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/environments/development.rb b/config/environments/development.rb index 36c61c2..cb9c73d 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -39,6 +39,6 @@ Pixelhum::Application.configure do :enable_starttls_auto => true } - config.action_mailer.default_url_options = { :host => "abidownloads.dev" } + config.action_mailer.default_url_options = { :host => "template.dev" } end diff --git a/config/environments/production.rb b/config/environments/production.rb index d1f8369..564d9f2 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -69,6 +69,6 @@ Pixelhum::Application.configure do } ActionMailer::Base.delivery_method = :smtp - config.action_mailer.default_url_options = { :host => "abidownloads.herokuapp.com" } + config.action_mailer.default_url_options = { :host => "pixelhum_template.herokuapp.com" } end