module ActionMailbox::TestHelper

def receive_inbound_email_from_mail(**kwargs, &block)

create_inbound_email_from_mail, then immediately route it for processing.
Create an InboundEmail using the same options or block as
def receive_inbound_email_from_mail(**kwargs, &block)
  create_inbound_email_from_mail(**kwargs, &block).tap(&:route)
end