mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:18:06 +08:00
1574485443
This refactoring was automated using the command: bundle exec "ruby refactorings/where_dot_first_to_find_by/app.rb"
19 lines
396 B
Ruby
19 lines
396 B
Ruby
require_dependency 'email/sender'
|
|
|
|
module Jobs
|
|
|
|
# Asynchronously send an email
|
|
class InviteEmail < Jobs::Base
|
|
|
|
def execute(args)
|
|
raise Discourse::InvalidParameters.new(:invite_id) unless args[:invite_id].present?
|
|
|
|
invite = Invite.find_by(id: args[:invite_id])
|
|
message = InviteMailer.send_invite(invite)
|
|
Email::Sender.new(message, :invite).send
|
|
end
|
|
|
|
end
|
|
|
|
end
|