See ActionMailbox::Base for how to specify routing.

Methods

Instance Public methods

mailbox_for(inbound_email)

📝 Source code
# File actionmailbox/lib/action_mailbox/routing.rb, line 21
      def mailbox_for(inbound_email)
        router.mailbox_for(inbound_email)
      end
🔎 See on GitHub

route(inbound_email)

📝 Source code
# File actionmailbox/lib/action_mailbox/routing.rb, line 17
      def route(inbound_email)
        router.route(inbound_email)
      end
🔎 See on GitHub

routing(routes)

📝 Source code
# File actionmailbox/lib/action_mailbox/routing.rb, line 13
      def routing(routes)
        router.add_routes(routes)
      end
🔎 See on GitHub