Class: EmailRmasReportWorker

Inherits:
Object
  • Object
show all
Includes:
Sidekiq::Job
Defined in:
app/workers/email_rmas_report_worker.rb

Instance Method Summary collapse

Instance Method Details

#performObject



5
6
7
8
9
10
# File 'app/workers/email_rmas_report_worker.rb', line 5

def perform
  end_date = Date.current - 1
  start_date = end_date.beginning_of_month

  InternalMailer.email_rmas_report(start_date, end_date).deliver_now
end