aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/action_mailbox/inbound_email/routable.rb
blob: 48b357af452ca108654d415513a1a673e1c5d49b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module ActionMailbox::InboundEmail::Routable
  extend ActiveSupport::Concern

  included do
    after_create_commit :route_later, if: ->(inbound_email) { inbound_email.pending? }
  end

  def route_later
    ActionMailbox::RoutingJob.perform_later self
  end

  def route
    ApplicationMailbox.route self
  end
end