2017-06-26 17:04:00 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AdminMailer < ApplicationMailer
|
2018-01-15 20:29:11 -06:00
|
|
|
layout 'plain_mailer'
|
|
|
|
|
2019-10-24 15:50:09 -05:00
|
|
|
helper :accounts
|
2017-06-30 06:40:43 -05:00
|
|
|
|
2017-06-26 17:04:00 -05: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-13 23:28:30 -05:00
|
|
|
|
2019-03-14 08:20:22 -05:00
|
|
|
def new_pending_account(recipient, user)
|
|
|
|
@account = user.account
|
2019-03-13 23:28:30 -05: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-05 12:54:29 -05:00
|
|
|
|
2021-11-25 06:07:38 -06:00
|
|
|
def new_trending_tags(recipient, tags)
|
|
|
|
@tags = tags
|
|
|
|
@me = recipient
|
|
|
|
@instance = Rails.configuration.x.local_domain
|
2021-11-29 10:39:40 -06:00
|
|
|
@lowest_trending_tag = Trends.tags.get(true, Trends.tags.options[:review_threshold]).last
|
2021-11-25 06:07:38 -06:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
|
|
|
mail to: @me.user_email, subject: I18n.t('admin_mailer.new_trending_tags.subject', instance: @instance)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new_trending_links(recipient, links)
|
|
|
|
@links = links
|
|
|
|
@me = recipient
|
|
|
|
@instance = Rails.configuration.x.local_domain
|
2021-11-29 10:39:40 -06:00
|
|
|
@lowest_trending_link = Trends.links.get(true, Trends.links.options[:review_threshold]).last
|
2019-08-05 12:54:29 -05:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
2021-11-25 06:07:38 -06:00
|
|
|
mail to: @me.user_email, subject: I18n.t('admin_mailer.new_trending_links.subject', instance: @instance)
|
2019-08-05 12:54:29 -05:00
|
|
|
end
|
|
|
|
end
|
2017-06-26 17:04:00 -05:00
|
|
|
end
|