2

Heroku のスケジューラと rake タスクを使用して、自分自身に日報を送信しようとしています。

scheduler.rake には

task :send_report => :environment do
  user_count = User.count
  share_count = Share.count
  ReportMailer.send(user_count, share_count).deliver
end

私のReportMailerは次のようになります

class ReportMailer < ActionMailer::Base
  def send(user_count, share_count)
    @user_count = user_count
    @share_count = share_count
    mail(from: "email@example.com", to: "email@spam.com", subject: "Report")
  end
end

そして、私が持っているビュー send.html.erb

<p>Report</p>
<p>Users: <%= @user_count %></p>
<p>Shares: <%= @share_count %></p>

実行するとエラーが発生しますheroku run rake send_report

Sending report...
   (1.6ms)  SELECT COUNT(*) FROM "users" 
   (1.3ms)  SELECT COUNT(*) FROM "shares" 
rake aborted!
2 is not a symbol
/app/lib/tasks/scheduler.rake:5:in `block in <top (required)>'
Tasks: TOP => send_report

User.count = 2 だから、別の方法で「カウント」を渡す必要があると思いますか?

4

1 に答える 1