32 lines
976 B
Ruby
32 lines
976 B
Ruby
class ReportMailer < ActionMailer::Base
|
|
default from: AppConfig.mail.sender_address
|
|
|
|
def self.new_report(type, id)
|
|
Role.moderators.map {|role| super(type, id, role) }
|
|
end
|
|
|
|
def new_report(type, id, role)
|
|
resource = {
|
|
url: report_index_url,
|
|
type: I18n.t("notifier.report_email.type." + type),
|
|
id: id
|
|
}
|
|
person = Person.find(role.person_id)
|
|
return unless person.local?
|
|
user = User.find_by_id(person.owner_id)
|
|
return if user.user_preferences.exists?(email_type: :someone_reported)
|
|
I18n.with_locale(user.language) do
|
|
resource[:email] = user.email
|
|
format(resource)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def format(resource)
|
|
mail(to: resource[:email], subject: I18n.t("notifier.report_email.subject", type: resource[:type])) do |format|
|
|
format.html { render "report/report_email", locals: {resource: resource} }
|
|
format.text { render "report/report_email", locals: {resource: resource} }
|
|
end
|
|
end
|
|
end
|