From 116ab27e081253a572b1ce7a5188b472092bbec4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Nov 2016 18:25:21 +0100 Subject: i18n for devise mailer too --- app/mailers/user_mailer.rb | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 app/mailers/user_mailer.rb (limited to 'app/mailers/user_mailer.rb') diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb new file mode 100644 index 000000000..5c086768d --- /dev/null +++ b/app/mailers/user_mailer.rb @@ -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 -- cgit