method

create_parts

rails latest stable - Class: ActionMailer::DeprecatedApi

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

create_parts()
private

No documentation available.

# File actionmailer/lib/action_mailer/deprecated_api.rb, line 138
    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}", v) }
      end
      super
    end