More Rails Features

Flashcard 7 of 8

Our company has a weekly newsletter we send out to all users, but recently the process started crashing due to memory issues and our ever increasing user base. What can we do to prevent the crashing?

User.all.each do |user|
  Newsletter.weekly(user).deliver_now
end

Answer:

Reveal Answer