What's the most elegant way to implement a digest email without reinventing a queueing system?

前端 未结 3 690
不知归路
不知归路 2021-02-06 11:24

I have my transactional email system setup & by default people get emails as events happen:

class Comment

  after_create :email_original_poster

  def email         


        
3条回答
  •  情深已故
    2021-02-06 11:58

    In case anyone wants more details on a great way to do this, there's a good overview here (second answer): Sending emails based on intervals using Ruby on Rails

提交回复
热议问题