diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2013-09-28 23:28:16 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2013-09-28 23:28:16 +0530 |
commit | 33434f69c44d622b760eca78c5631dfce8c4ad54 (patch) | |
tree | 233f270b21b082403e6547b572887446535e0128 /actionmailer | |
parent | fa915461bc4892b8d53d3d4e202ba16f0dbdfe12 (diff) | |
parent | e2a7dbfe30e18cedb26a872ba0e1de4b95b513c4 (diff) | |
download | rails-33434f69c44d622b760eca78c5631dfce8c4ad54.tar.gz rails-33434f69c44d622b760eca78c5631dfce8c4ad54.tar.bz2 rails-33434f69c44d622b760eca78c5631dfce8c4ad54.zip |
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/README.rdoc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc index 178572706c..96dd0b1a2e 100644 --- a/actionmailer/README.rdoc +++ b/actionmailer/README.rdoc @@ -61,9 +61,7 @@ generated would look like this: Thank you for signing up! -In previous versions of Rails you would call <tt>create_method_name</tt> and -<tt>deliver_method_name</tt>. Rails 3.0 has a much simpler interface - you -simply call the method and optionally call +deliver+ on the return value. +In order to send mails, you simply call the method and then call +deliver+ on the return value. Calling the method returns a Mail Message object: |