Flowdock
method

track_status_of_inbound_email

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Base
track_status_of_inbound_email() private

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/base.rb, line 107
      def track_status_of_inbound_email
        inbound_email.processing!
        yield
        inbound_email.delivered! unless inbound_email.bounced?
      rescue
        inbound_email.failed!
        raise
      end
Register or log in to add new notes.