Flowdock
method

collect_responses

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ActionMailer::Base
collect_responses(headers, &block) private

No documentation

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

Hide source
# File actionmailer/lib/action_mailer/base.rb, line 927
      def collect_responses(headers, &block)
        if block_given?
          collect_responses_from_block(headers, &block)
        elsif headers[:body]
          collect_responses_from_text(headers)
        else
          collect_responses_from_templates(headers)
        end
      end
Register or log in to add new notes.