2016-11-16 18:25:21 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UserMailer < Devise::Mailer
|
|
|
|
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
|
|
|
|
layout 'mailer'
|
|
|
|
|
2016-11-17 12:29:11 +01:00
|
|
|
def confirmation_instructions(user, token, _opts = {})
|
2016-11-16 18:25:21 +01:00
|
|
|
@resource = user
|
|
|
|
@token = token
|
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
2016-12-23 00:43:03 +01:00
|
|
|
mail to: @resource.unconfirmed_email.blank? ? @resource.email : @resource.unconfirmed_email
|
2016-11-16 18:25:21 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-17 12:29:11 +01:00
|
|
|
def reset_password_instructions(user, token, _opts = {})
|
2016-11-16 18:25:21 +01:00
|
|
|
@resource = user
|
|
|
|
@token = token
|
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
|
|
|
mail to: @resource.email
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-17 12:29:11 +01:00
|
|
|
def password_change(user, _opts = {})
|
2016-11-16 18:25:21 +01:00
|
|
|
@resource = user
|
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
|
|
|
mail to: @resource.email
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|