method
create_inline_part
create_inline_part(body, mime_type=nil)
protected
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


