aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/README.rdoc
diff options
context:
space:
mode:
authorJudeArasu <judearasu@gmail.com>2011-03-05 06:08:21 +0530
committerXavier Noria <fxn@hashref.com>2011-03-05 11:57:32 +0100
commitb12a4a9296469f4866b20a5db8c02cdc8844d9db (patch)
tree6fcb13f4885f0b240d7abd72097f3c7bb0aba555 /actionmailer/README.rdoc
parent737abe4b4dcf3621d7ba6db7fe5d64d73078bfad (diff)
downloadrails-b12a4a9296469f4866b20a5db8c02cdc8844d9db.tar.gz
rails-b12a4a9296469f4866b20a5db8c02cdc8844d9db.tar.bz2
rails-b12a4a9296469f4866b20a5db8c02cdc8844d9db.zip
typo changes
Diffstat (limited to 'actionmailer/README.rdoc')
-rw-r--r--actionmailer/README.rdoc7
1 files changed, 4 insertions, 3 deletions
diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc
index b346bd9e79..fb93fd1080 100644
--- a/actionmailer/README.rdoc
+++ b/actionmailer/README.rdoc
@@ -75,9 +75,9 @@ Or you can just chain the methods together like:
== Receiving emails
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,
+email object as its single parameter. The Action Mailer framework has a corresponding class method,
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.
+into the email object and calls the receive instance method.
Example:
@@ -104,7 +104,7 @@ trivial case like this:
rails runner 'Mailman.receive(STDIN.read)'
However, invoking Rails in the runner for each mail to be received is very resource intensive. A single
-instance of Rails should be run within a daemon if it is going to be utilized to process more than just
+instance of Rails should be run within a daemon, if it is going to be utilized to process more than just
a limited number of email.
== Configuration
@@ -145,3 +145,4 @@ API documentation is at
Bug reports and feature requests can be filed with the rest for the Ruby on Rails project here:
* https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets
+