resque/resque-scheduler

View on GitHub
examples/dynamic-scheduling/app/jobs/send_email_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
# vim:fileencoding=utf-8

class SendEmailJob
  @queue = :send_emails

  def self.perform(_user_id)
    # ... do whatever you have to do to send an email to the user
  end
end