parent
a91d968cab
commit
42b8220632
@ -0,0 +1,13 @@ |
|||||||
|
# frozen_string_literal: true |
||||||
|
|
||||||
|
class AdminMailer < ApplicationMailer |
||||||
|
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 |
||||||
|
end |
@ -0,0 +1,5 @@ |
|||||||
|
<%= display_name(@me) %>, |
||||||
|
|
||||||
|
<%= raw t('admin_mailer.new_report.body', target: @report.target_account.acct, reporter: @report.account.acct) %> |
||||||
|
|
||||||
|
<%= raw t('application_mailer.view')%> <%= admin_report_url(@report) %> |
Loading…
Reference in new issue