about summary refs log tree commit diff
path: root/config/environments/development.rb
diff options
context:
space:
mode:
authorEffy Elden <git@effy.is>2017-01-21 20:22:49 +1100
committerEffy Elden <git@effy.is>2017-01-21 20:22:49 +1100
commit5fef55c11a7ea855e7b43ed274558a0893d0dc16 (patch)
tree3d5e2de6549b299a6c132d8d2f3e8898a1c232c0 /config/environments/development.rb
parent1aae0cfc2c3a8c9f1748ae0f359ff00672e89bf1 (diff)
Set remote dev environments to use letter_opener_web, add default .env.vagrant variables
Diffstat (limited to 'config/environments/development.rb')
-rw-r--r--config/environments/development.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb
index 829edcf04..476f3d74c 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -62,7 +62,15 @@ Rails.application.configure do
   # routes, locales, etc. This feature depends on the listen gem.
   # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
 
-  config.action_mailer.delivery_method = :letter_opener
+  # If usng a Heroku, Vagrant or generic remote development environment,
+  # use letter_opener_web, accessible at  /letter_opener.
+  #
+  # Otherwise, use letter_opener, which launches a browser window to view sent mail.
+  if (ENV['HEROKU'] || ENV['VAGRANT'] || ENV['REMOTE_DEV'])
+    config.action_mailer.delivery_method = :letter_opener_web
+  else
+    config.action_mailer.delivery_method = :letter_opener
+  end
 
   config.after_initialize do
     Bullet.enable        = true