putting receive method under tt

This commit is contained in:
Neeraj Singh 2010-07-28 21:50:24 -04:00
parent c2341ee71a
commit 2df365529b
1 changed files with 2 additions and 2 deletions

View File

@ -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: