2017-06-27 08:04:00 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AdminMailer < ApplicationMailer
|
2018-01-16 13:29:11 +11:00
|
|
|
layout 'plain_mailer'
|
|
|
|
|
2019-10-25 07:50:09 +11:00
|
|
|
helper :accounts
|
2022-10-09 01:45:40 +11:00
|
|
|
helper :languages
|
2017-06-30 21:40:43 +10:00
|
|
|
|
2017-06-27 08:04:00 +10:00
|
|
|
def new_report(recipient, report)
|
|
|
|
@report = report
|
|
|
|
@me = recipient
|
|
|
|
@instance = Rails.configuration.x.local_domain
|
|
|
|
|
|
|
|
locale_for_account(@me) do
|
|
|
|
mail to: @me.user_email, subject: I18n.t('admin_mailer.new_report.subject', instance: @instance, id: @report.id)
|
|
|
|
end
|
|
|
|
end
|
2019-03-14 15:28:30 +11:00
|
|
|
|
2022-02-15 07:27:53 +11:00
|
|
|
def new_appeal(recipient, appeal)
|
|
|
|
@appeal = appeal
|
|
|
|
@me = recipient
|
|
|
|
@instance = Rails.configuration.x.local_domain
|
|
|
|
|
|
|
|
locale_for_account(@me) do
|
|
|
|
mail to: @me.user_email, subject: I18n.t('admin_mailer.new_appeal.subject', instance: @instance, username: @appeal.account.username)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-15 00:20:22 +11:00
|
|
|
def new_pending_account(recipient, user)
|
|
|
|
@account = user.account
|
2019-03-14 15:28:30 +11:00
|
|
|
@me = recipient
|
|
|
|
@instance = Rails.configuration.x.local_domain
|
|
|
|
|
|
|
|
locale_for_account(@me) do
|
|
|
|
mail to: @me.user_email, subject: I18n.t('admin_mailer.new_pending_account.subject', instance: @instance, username: @account.username)
|
|
|
|
end
|
|
|
|
end
|
2019-08-06 03:54:29 +10:00
|
|
|
|
2022-02-25 10:34:14 +11:00
|
|
|
def new_trends(recipient, links, tags, statuses)
|
|
|
|
@links = links
|
|
|
|
@tags = tags
|
|
|
|
@statuses = statuses
|
|
|
|
@me = recipient
|
|
|
|
@instance = Rails.configuration.x.local_domain
|
2021-11-25 23:07:38 +11:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
2022-02-25 10:34:14 +11:00
|
|
|
mail to: @me.user_email, subject: I18n.t('admin_mailer.new_trends.subject', instance: @instance)
|
2019-08-06 03:54:29 +10:00
|
|
|
end
|
|
|
|
end
|
2017-06-27 08:04:00 +10:00
|
|
|
end
|