This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-06-27 00:04:00 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AdminMailer < ApplicationMailer
|
2018-01-16 03:29:11 +01:00
|
|
|
layout 'plain_mailer'
|
|
|
|
|
|
|
|
helper :stream_entries
|
2017-06-30 13:40:43 +02:00
|
|
|
|
2017-06-27 00:04:00 +02: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
|
|
|
|
end
|