123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # 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
- private
- def process_params
- @me = params[:recipient]
- end
- def set_instance
- @instance = Rails.configuration.x.local_domain
- end
- end
|