我想向使用Rails 3注册我的应用的所有用户发送相同的电子邮件。我该怎么办?代码在哪里?我该如何调用该方法?
答案 0 :(得分:2)
听起来像你可以通过自定义rake任务做的事情:
namespace :whatever do
desc "Send out email to all users"
task :mail => :environment do
# your code goes here
end
end
然后在需要时通过cron触发rake任务,例如每晚。