aboutsummaryrefslogtreecommitdiffstats
path: root/app/jobs/action_mailbox/routing_job.rb
blob: c34522761786862aa6606dbbe5ca792952c289f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Routing a new InboundEmail is an asynchronous operation, which allows the ingress controllers to quickly
# accept new incoming emails without being burdened to hang while they're actually being processed.
class ActionMailbox::RoutingJob < ActiveJob::Base
  queue_as { ActionMailbox.queues[:routing] }

  def perform(inbound_email)
    inbound_email.route
  end
end