向所有用户发送电子邮件
我想向所有使用 Rails 3 注册我的应用程序的用户发送同一封电子邮件。我该如何执行此操作?代码去哪里了?我如何调用该方法?
I want to send the same email to all of the users that have signed up for my app with Rails 3. How do I do this? Where does the code go? How do I call the method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来像是您可以从自定义 rake 任务中执行的操作:
然后在需要时(例如每天晚上)通过 cron 触发 rake 任务。
Sounds like something you would do from a custom rake task:
Then trigger the rake task via cron whenever you need, e.g. every night.