aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/base.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-19 01:15:57 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-19 01:36:07 +0100
commita0374582ff6d403a48b018df666b064f4c261f20 (patch)
treea6d774ef38fd42ee21e3572b3860a7556b5862dc /actionmailer/lib/action_mailer/base.rb
parentc7255386cd3d6de037a9b08b635f9ac299608ac4 (diff)
downloadrails-a0374582ff6d403a48b018df666b064f4c261f20.tar.gz
rails-a0374582ff6d403a48b018df666b064f4c261f20.tar.bz2
rails-a0374582ff6d403a48b018df666b064f4c261f20.zip
Bring body(Hash) behavior back.
Diffstat (limited to 'actionmailer/lib/action_mailer/base.rb')
-rw-r--r--actionmailer/lib/action_mailer/base.rb17
1 files changed, 15 insertions, 2 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 5be1beaedb..928fed4777 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -23,8 +23,7 @@ module ActionMailer #:nodoc:
# bcc ["bcc@example.com", "Order Watcher <watcher@example.com>"]
# from "system@example.com"
# subject "New account information"
- #
- # @account = recipient
+ # body :account => recipient
# end
# end
#
@@ -523,6 +522,20 @@ module ActionMailer #:nodoc:
private
+ # Allow you to set assigns for your template:
+ #
+ # body :greetings => "Hi"
+ #
+ # Will make @greetings available in the template to be rendered.
+ def body(object=nil)
+ super # Run deprecation hooks
+
+ if object.is_a?(Hash)
+ @assigns_set = true
+ object.each { |k, v| instance_variable_set(:"@#{k}", v) }
+ end
+ end
+
# Set up the default values for the various instance variables of this
# mailer. Subclasses may override this method to provide different
# defaults.