Description
In app/jobs/enqueue_analytics_summary_emails_job.rb:14-16:
Account.where(locked_at: nil).find_each do |account|
AnalyticsSummaryEmailJob.perform_later(account)
end
This enqueues a job for every unlocked account every Monday, even those that haven't opted into analytics emails or have no recent activity.
Recommendation
Filter accounts to only those who should receive analytics emails.
Severity
Low