Flowdock
method

route

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Router
route(inbound_email) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailbox/lib/action_mailbox/router.rb, line 23
    def route(inbound_email)
      if mailbox = match_to_mailbox(inbound_email)
        mailbox.receive(inbound_email)
      else
        inbound_email.bounced!

        raise RoutingError
      end
    end
Register or log in to add new notes.