0
0
Fork 0

i18n for devise mailer too

This commit is contained in:
Eugen Rochko 2016-11-16 18:25:21 +01:00
parent 2c766bd4b4
commit 116ab27e08
9 changed files with 36 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# frozen_string_literal: true
class ApplicationMailer < ActionMailer::Base
default from: (ENV['SMTP_FROM_ADDRESS'] || 'notifications@localhost')
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
layout 'mailer'
end