module ActionMailbox::InboundEmail::Routable

def route

Route this +InboundEmail+ using the routing rules declared on the +ApplicationMailbox+.
def route
  ApplicationMailbox.route self
end

def route_later

Enqueue a +RoutingJob+ for this +InboundEmail+.
def route_later
  ActionMailbox::RoutingJob.perform_later self
end