diff options
author | Xavier Noria <fxn@hashref.com> | 2010-08-12 17:36:09 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-08-12 17:36:09 +0200 |
commit | 4134d7db34506887f5cb945bb4e51c53c5f67ec3 (patch) | |
tree | 161991a34115f2ecd41725ab65af0895b93489ed /actionmailer | |
parent | e4943e93c2571cba8630eec2e77000300947866b (diff) | |
parent | 8af2186d26c77f6fcb0787f50941ebe1a2905c5f (diff) | |
download | rails-4134d7db34506887f5cb945bb4e51c53c5f67ec3.tar.gz rails-4134d7db34506887f5cb945bb4e51c53c5f67ec3.tar.bz2 rails-4134d7db34506887f5cb945bb4e51c53c5f67ec3.zip |
Merge remote branch 'docrails/master'
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/README.rdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc index b52c993f56..602326eef7 100644 --- a/actionmailer/README.rdoc +++ b/actionmailer/README.rdoc @@ -65,8 +65,8 @@ simply call the method and optionally call +deliver+ on the return value. Calling the method returns a Mail Message object: - message = Notifier.welcome #=> Returns a Mail::Message object - message.deliver #=> delivers the email + message = Notifier.welcome # => Returns a Mail::Message object + message.deliver # => delivers the email Or you can just chain the methods together like: |