mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Let's see if this works
This commit is contained in:
@@ -3,11 +3,11 @@ require_dependency 'email/message_builder'
|
||||
class RejectionMailer < ActionMailer::Base
|
||||
include Email::BuildEmailHelper
|
||||
|
||||
def send_rejection(from, body)
|
||||
build_email(from, template: 'email_error_notification', from: from, body: body)
|
||||
def send_rejection(from, body, error)
|
||||
build_email(from, template: 'email_error_notification', error: "#{error.message}\n\n#{error.backtrace.join("\n")}", source: body)
|
||||
end
|
||||
|
||||
def send_trust_level(from, body, to)
|
||||
build_email(from, template: 'email_reject_trust_level', to: to)
|
||||
def send_trust_level(from, body)
|
||||
build_email(from, template: 'email_reject_trust_level')
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user