otwarchive-symphonyarchive/app/mailers/archive_devise_mailer.rb

43 lines
1.5 KiB
Ruby
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
# frozen_string_literal: true
# Class for customizing the reset_password_instructions email.
class ArchiveDeviseMailer < Devise::Mailer
layout "mailer"
helper :mailer
helper :application
default from: "Archive of Our Own <#{ArchiveConfig.RETURN_ADDRESS}>"
def reset_password_instructions(record, token, options = {})
@user = record
@token = token
subject = if @user.is_a?(Admin)
t("admin.mailer.reset_password_instructions.subject",
app_name: ArchiveConfig.APP_SHORT_NAME)
else
t("users.mailer.reset_password_instructions.subject",
app_name: ArchiveConfig.APP_SHORT_NAME)
end
devise_mail(record, :reset_password_instructions,
options.merge(subject: subject))
end
def confirmation_instructions(record, token, opts = {})
@token = token
subject = t("users.mailer.confirmation_instructions.subject", app_name: ArchiveConfig.APP_SHORT_NAME)
devise_mail(record, :confirmation_instructions, opts.merge(subject: subject))
end
def password_change(record, opts = {})
@pac_footer = true
subject = if record.is_a?(Admin)
t("admin.mailer.password_change.subject",
app_name: ArchiveConfig.APP_SHORT_NAME)
else
t("users.mailer.password_change.subject",
app_name: ArchiveConfig.APP_SHORT_NAME)
end
devise_mail(record, :password_change, opts.merge(subject: subject))
end
end