method

create_parts

create_parts()
private

No documentation available.

# File actionmailer/lib/action_mailer/deprecated_api.rb, line 139
    def create_parts
      if @body.is_a?(Hash) && !@body.empty?
        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}""@#{k}", v) }
      end
      super
    end