mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
13 lines
240 B
Ruby
13 lines
240 B
Ruby
class AttemptToDeliverPhysicalMailJob < ApplicationJob
|
|
queue_as :literally_whenever
|
|
|
|
include HasEnqueueControl
|
|
enqueue_limit 1
|
|
|
|
def perform
|
|
PhysicalMail.pending_delivery.find_each do |mail|
|
|
mail.deliver!
|
|
end
|
|
end
|
|
end
|