Flowdock
method

assign_headers_to_message

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ActionMailer::Base
assign_headers_to_message(message, headers) 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 921
      def assign_headers_to_message(message, headers)
        assignable = headers.except(:parts_order, :content_type, :body, :template_name,
                                    :template_path, :delivery_method, :delivery_method_options)
        assignable.each { |k, v| message[k] = v }
      end
Register or log in to add new notes.