Skip to content

Instantly share code, notes, and snippets.

@jessecurry
Created June 11, 2015 14:06
Show Gist options
  • Save jessecurry/2d9f7fa3c4901362d6c9 to your computer and use it in GitHub Desktop.
Save jessecurry/2d9f7fa3c4901362d6c9 to your computer and use it in GitHub Desktop.
Job to email reports
class EmailReportJob < ActiveJob::Base
queue_as :mail
def perform recipients, report_builder
recipients.each do |recipient|
ReportMailer.new_report_email(recipient, report_builder).deliver
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment