Created
October 1, 2013 17:24
-
-
Save ArionHardison/6782033 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DailyWorker | |
include Sidekiq::Worker | |
include Sidetiq::Schedulable | |
# Daily at midnight | |
recurrence { daily } | |
def perform | |
User.includes(:profile).where("profiles.daily_email" => true) do |u| | |
ReminderMailer.remind_email(u).deliver | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment