mastodon/app/mailers/user_mailer.rb

43 lines
1.2 KiB
Ruby
Raw Normal View History

2016-11-16 18:25:21 +01:00
# frozen_string_literal: true
class UserMailer < Devise::Mailer
layout 'mailer'
helper :instance
2017-12-06 11:41:57 +01:00
def confirmation_instructions(user, token, **)
2016-11-16 18:25:21 +01:00
@resource = user
@token = token
@instance = Rails.configuration.x.local_domain
2016-11-16 18:25:21 +01:00
return if @resource.disabled?
2016-11-16 18:25:21 +01:00
I18n.with_locale(@resource.locale || I18n.default_locale) do
mail to: @resource.unconfirmed_email.blank? ? @resource.email : @resource.unconfirmed_email, subject: I18n.t('devise.mailer.confirmation_instructions.subject', instance: @instance)
2016-11-16 18:25:21 +01:00
end
end
2017-12-06 11:41:57 +01:00
def reset_password_instructions(user, token, **)
2016-11-16 18:25:21 +01:00
@resource = user
@token = token
@instance = Rails.configuration.x.local_domain
2016-11-16 18:25:21 +01:00
return if @resource.disabled?
2016-11-16 18:25:21 +01:00
I18n.with_locale(@resource.locale || I18n.default_locale) do
mail to: @resource.email, subject: I18n.t('devise.mailer.reset_password_instructions.subject')
2016-11-16 18:25:21 +01:00
end
end
2017-12-06 11:41:57 +01:00
def password_change(user, **)
2016-11-16 18:25:21 +01:00
@resource = user
@instance = Rails.configuration.x.local_domain
2016-11-16 18:25:21 +01:00
return if @resource.disabled?
2016-11-16 18:25:21 +01:00
I18n.with_locale(@resource.locale || I18n.default_locale) do
mail to: @resource.email, subject: I18n.t('devise.mailer.password_change.subject')
2016-11-16 18:25:21 +01:00
end
end
end