diff options
author | Neeraj Singh <neerajdotname@gmail.com> | 2010-07-28 21:50:24 -0400 |
---|---|---|
committer | Neeraj Singh <neerajdotname@gmail.com> | 2010-07-28 21:50:24 -0400 |
commit | 2df365529bf82c76512c6462b19bf196ad932c73 (patch) | |
tree | 15fe202f56a1d1c15a8613437537725e675a5be0 | |
parent | c2341ee71ae0e5d3ec2873ad8e034d8a4e88ed54 (diff) | |
download | rails-2df365529bf82c76512c6462b19bf196ad932c73.tar.gz rails-2df365529bf82c76512c6462b19bf196ad932c73.tar.bz2 rails-2df365529bf82c76512c6462b19bf196ad932c73.zip |
putting receive method under tt
-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 64b0333c0a..b52c993f56 100644 --- a/actionmailer/README.rdoc +++ b/actionmailer/README.rdoc @@ -74,9 +74,9 @@ Or you can just chain the methods together like: == Receiving emails -To receive emails, you need to implement a public instance method called receive that takes a +To receive emails, you need to implement a public instance method called <tt>receive</tt> that takes a tmail object as its single parameter. The Action Mailer framework has a corresponding class method, -which is also called receive, that accepts a raw, unprocessed email as a string, which it then turns +which is also called <tt>receive</tt>, that accepts a raw, unprocessed email as a string, which it then turns into the tmail object and calls the receive instance method. Example: |