method
create_parts
v3.0.0 -
Show latest stable
- Class:
ActionMailer::DeprecatedApi
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