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

View File

@ -0,0 +1,32 @@
# frozen_string_literal: true
class UserMailer < Devise::Mailer
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
layout 'mailer'
def confirmation_instructions(user, token)
@resource = user
@token = token
I18n.with_locale(@resource.locale || I18n.default_locale) do
mail to: @resource.email
end
end
def reset_password_instructions(user, token)
@resource = user
@token = token
I18n.with_locale(@resource.locale || I18n.default_locale) do
mail to: @resource.email
end
end
def password_change(user)
@resource = user
I18n.with_locale(@resource.locale || I18n.default_locale) do
mail to: @resource.email
end
end
end