From 13963c9f049b9c3c187e70894d0d0c04a4170fb2 Mon Sep 17 00:00:00 2001 From: pixeldesu Date: Tue, 21 Jul 2015 18:28:23 +0200 Subject: [PATCH] add description how to use local testing for mails --- Gemfile.lock | 5 +++++ config/environments/development.rb | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index fc219d56..a6873462 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -242,6 +242,10 @@ GEM actionpack (>= 3.0.0) activesupport (>= 3.0.0) kgio (2.9.3) + launchy (2.4.3) + addressable (~> 2.3) + letter_opener (1.4.1) + launchy (~> 2.2) loofah (2.0.1) nokogiri (>= 1.5.9) mail (2.6.3) @@ -503,6 +507,7 @@ DEPENDENCIES jbuilder (~> 2.2.4) jquery-rails jquery-turbolinks + letter_opener momentjs-rails (>= 2.9.0) mysql2 nprogress-rails diff --git a/config/environments/development.rb b/config/environments/development.rb index 04036a80..0ca5e99d 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -13,8 +13,11 @@ Rails.application.configure do config.consider_all_requests_local = true config.action_controller.perform_caching = false + # Action Mailer Setup + # if you want to test sending mails locally, uncomment the line below and comment the :sendmail line + # config.action_mailer.delivery_method = :letter_opener config.action_mailer.delivery_method = :sendmail - config.action_mailer.default_url_options = { host: 'justask.local' } + config.action_mailer.default_url_options = { host: 'localhost:3000' } config.action_mailer.perform_deliveries = true # Don't care if the mailer can't send. config.action_mailer.raise_delivery_errors = false