Mailer.deliver_later doesn't work in rake tasks

This commit is contained in:
Karel Pičman 2019-02-14 14:27:32 +01:00
parent c60870f0f9
commit 3addcab702

View File

@ -86,7 +86,7 @@ class DmsfMailer < Mailer
def self.deliver_workflow_notification(users, workflow, revision, subject_id, text1_id, text2_id, notice = nil)
users.each do |user|
workflow_notification(user, workflow, revision, subject_id.to_s, text1_id.to_s, text2_id.to_s, notice).deliver_later
workflow_notification(user, workflow, revision, subject_id.to_s, text1_id.to_s, text2_id.to_s, notice).deliver_now
end
end