Flowdock
method

create_inline_part

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: ActionMailer::OldApi
create_inline_part(body, mime_type=nil) protected

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/old_api.rb, line 219
    def create_inline_part(body, mime_type=nil)
      ct = mime_type || "text/plain"
      main_type, sub_type = split_content_type(ct.to_s)

      Mail::Part.new(
        :content_type => [main_type, sub_type, {:charset => charset}],
        :content_disposition => "inline",
        :body => body
      )
    end
Register or log in to add new notes.