mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
f0a122a66c
introduce new setting email_always, that will force emails to send to users regardless of presence on site
19 lines
400 B
Ruby
19 lines
400 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.where(id: args[:invite_id]).first
|
|
message = InviteMailer.send_invite(invite)
|
|
Email::Sender.new(message, :invite).send
|
|
end
|
|
|
|
end
|
|
|
|
end
|