mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
13 lines
363 B
Ruby
13 lines
363 B
Ruby
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)
|
|
end
|
|
|
|
def send_trust_level(from, body, to)
|
|
build_email(from, template: 'email_reject_trust_level', to: to)
|
|
end
|
|
end
|