mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
19 lines
356 B
Ruby
19 lines
356 B
Ruby
|
require_dependency 'email_sender'
|
||
|
|
||
|
module Jobs
|
||
|
|
||
|
# Asynchronously send an email
|
||
|
class TestEmail < Jobs::Base
|
||
|
|
||
|
def execute(args)
|
||
|
|
||
|
raise Discourse::InvalidParameters.new(:to_address) unless args[:to_address].present?
|
||
|
|
||
|
message = TestMailer.send_test(args[:to_address])
|
||
|
EmailSender.new(message, :test_message).send
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|