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.
17 lines
425 B
17 lines
425 B
# frozen_string_literal: true |
|
|
|
class AdminMailer < ApplicationMailer |
|
layout 'plain_mailer' |
|
|
|
helper :stream_entries |
|
|
|
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
|
|
|