method
render
render(opts)
private
Hide source
# File actionmailer/lib/action_mailer/base.rb, line 536 def render(opts) body = opts.delete(:body) if opts[:file] && opts[:file] !~ /\// opts[:file] = "#{mailer_name}/#{opts[:file]}" end initialize_template_class(body).render(opts) end