discourse/app/jobs/regular/invite_password_instructions_email.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

20 lines
488 B
Ruby

# frozen_string_literal: true
require_dependency 'email/sender'
module Jobs
# Asynchronously send an email
class InvitePasswordInstructionsEmail < Jobs::Base
def execute(args)
raise Discourse::InvalidParameters.new(:username) unless args[:username].present?
user = User.find_by_username_or_email(args[:username])
message = InviteMailer.send_password_instructions(user)
Email::Sender.new(message, :invite_password_instructions).send
end
end
end