You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.5 KiB
73 lines
1.5 KiB
# frozen_string_literal: true |
|
|
|
class AdminMailer < ApplicationMailer |
|
layout 'plain_mailer' |
|
|
|
helper :accounts |
|
helper :languages |
|
|
|
before_action :process_params |
|
before_action :set_instance |
|
|
|
default to: -> { @me.user_email } |
|
|
|
def new_report(report) |
|
@report = report |
|
|
|
locale_for_account(@me) do |
|
mail subject: default_i18n_subject(instance: @instance, id: @report.id) |
|
end |
|
end |
|
|
|
def new_appeal(appeal) |
|
@appeal = appeal |
|
|
|
locale_for_account(@me) do |
|
mail subject: default_i18n_subject(instance: @instance, username: @appeal.account.username) |
|
end |
|
end |
|
|
|
def new_pending_account(user) |
|
@account = user.account |
|
|
|
locale_for_account(@me) do |
|
mail subject: default_i18n_subject(instance: @instance, username: @account.username) |
|
end |
|
end |
|
|
|
def new_trends(links, tags, statuses) |
|
@links = links |
|
@tags = tags |
|
@statuses = statuses |
|
|
|
locale_for_account(@me) do |
|
mail subject: default_i18n_subject(instance: @instance) |
|
end |
|
end |
|
|
|
def new_software_updates |
|
locale_for_account(@me) do |
|
mail subject: default_i18n_subject(instance: @instance) |
|
end |
|
end |
|
|
|
def new_critical_software_updates |
|
headers['Priority'] = 'urgent' |
|
headers['X-Priority'] = '1' |
|
headers['Importance'] = 'high' |
|
|
|
locale_for_account(@me) do |
|
mail subject: default_i18n_subject(instance: @instance) |
|
end |
|
end |
|
|
|
private |
|
|
|
def process_params |
|
@me = params[:recipient] |
|
end |
|
|
|
def set_instance |
|
@instance = Rails.configuration.x.local_domain |
|
end |
|
end
|
|
|