This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-16 09:25:21 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UserMailer < Devise::Mailer
|
|
|
|
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
|
|
|
|
layout 'mailer'
|
|
|
|
|
2016-11-17 03:29:11 -08:00
|
|
|
def confirmation_instructions(user, token, _opts = {})
|
2016-11-16 09:25:21 -08:00
|
|
|
@resource = user
|
|
|
|
@token = token
|
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
|
|
|
mail to: @resource.email
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-17 03:29:11 -08:00
|
|
|
def reset_password_instructions(user, token, _opts = {})
|
2016-11-16 09:25:21 -08:00
|
|
|
@resource = user
|
|
|
|
@token = token
|
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
|
|
|
mail to: @resource.email
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-17 03:29:11 -08:00
|
|
|
def password_change(user, _opts = {})
|
2016-11-16 09:25:21 -08:00
|
|
|
@resource = user
|
|
|
|
|
|
|
|
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
|
|
|
mail to: @resource.email
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|