You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
334 B
15 lines
334 B
8 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class DigestMailerWorker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
sidekiq_options queue: 'mailers'
|
||
|
|
||
|
def perform(user_id)
|
||
|
user = User.find(user_id)
|
||
|
return unless user.settings.notification_emails['digest']
|
||
|
NotificationMailer.digest(user.account).deliver_now!
|
||
|
user.touch(:last_emailed_at)
|
||
|
end
|
||
|
end
|