Supress pop up emails

- Emails will only be visible by visiting /letter_opener
- Helps with those who leave Huginn running on their dev machine

Will Read 9 anos atrás
pai
commit
5f731d55bf
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      config/environments/development.rb

+ 1 - 1
config/environments/development.rb

@@ -43,7 +43,7 @@ Huginn::Application.configure do
43 43
   if ENV['SEND_EMAIL_IN_DEVELOPMENT'] == 'true'
44 44
     config.action_mailer.delivery_method = :smtp
45 45
   else
46
-    config.action_mailer.delivery_method = :letter_opener
46
+    config.action_mailer.delivery_method = :letter_opener_web
47 47
   end
48 48
   # smtp_settings moved to config/initializers/action_mailer.rb
49 49
 end