method

create_parts

create_parts()
private

No documentation available.

# File actionmailer/lib/action_mailer/deprecated_api.rb, line 138
    def create_parts
      if @body.is_a?(Hash) && [email protected]?
        ActiveSupport::Deprecation.warn "Giving a hash to body is deprecated, please use instance variables instead", caller[0,2]
        @body.each { |k, v| instance_variable_set(:"@#{k}", v) }
      end
      super
    end