mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
10 lines
250 B
Ruby
10 lines
250 B
Ruby
|
require_dependency 'email/message_builder'
|
||
|
|
||
|
class RejectionMailer < ActionMailer::Base
|
||
|
include Email::BuildEmailHelper
|
||
|
|
||
|
def send_rejection(from, body)
|
||
|
build_email(from, template: 'email_reject_notification', from: from, body: body)
|
||
|
end
|
||
|
end
|