我可以使用新的 rails 4.2 功能通过 ActiveJob 发送电子邮件
class InvitationModel < ActiveRecord::Base
def send_invitation
MyMailer.send_the_email(param1).deliver_later
end
end
默认队列(内联运行器?)是否支持指定的延迟,例如(伪代码)
MyMailer.send_the_email(param1).deliver_in(minutes: 5)
或者我需要另一个宝石吗?通过将 ActiveJob 与内联运行器一起使用,这封电子邮件的发送真的是异步的吗?