2016-11-16 17:25:21 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UserMailer < Devise::Mailer
|
|
|
|
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
|
|
|
|
layout 'mailer'
|
|
|
|
|
2017-04-17 22:16:32 +00:00
|
|
|
helper :instance
|
|
|
|
|
2016-11-17 11:29:11 +00:00
|
|
|
def confirmation_instructions(user, token, _opts = {})
|
2016-11-16 17:25:21 +00:00
|
|
|
@resource = user
|
|
|
|
@token = token
|
2017-04-12 15:11:49 +00:00
|
|
|
@instance = Rails.configuration.x.local_domain
|
2016-11-16 17:25:21 +00:00
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
2017-04-12 15:11:49 +00:00
|
|
|
mail to: @resource.unconfirmed_email.blank? ? @resource.email : @resource.unconfirmed_email, subject: I18n.t('devise.mailer.confirmation_instructions.subject', instance: @instance)
|
2016-11-16 17:25:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-17 11:29:11 +00:00
|
|
|
def reset_password_instructions(user, token, _opts = {})
|
2016-11-16 17:25:21 +00:00
|
|
|
@resource = user
|
|
|
|
@token = token
|
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
2017-04-12 15:11:49 +00:00
|
|
|
mail to: @resource.email, subject: I18n.t('devise.mailer.reset_password_instructions.subject')
|
2016-11-16 17:25:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-17 11:29:11 +00:00
|
|
|
def password_change(user, _opts = {})
|
2016-11-16 17:25:21 +00:00
|
|
|
@resource = user
|
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
2017-04-12 15:11:49 +00:00
|
|
|
mail to: @resource.email, subject: I18n.t('devise.mailer.password_change.subject')
|
2016-11-16 17:25:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|