Flowdock
method

assign_headers_to_message

Importance_0
v5.0.0.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 891
    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.