aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/README
diff options
context:
space:
mode:
authorJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-26 01:43:41 +0100
committerJosé Valim and Mikel Lindsaar <pair@programming.com>2010-01-26 01:43:41 +0100
commit6589976533b7a6850390ed5d6526ca719e56c5ca (patch)
treec4b3bfb8bb961e70d963a4b97bcf19ef1f82411e /actionmailer/README
parent1b3cb54ebae685d4db9eefc99ce68b36d5641751 (diff)
downloadrails-6589976533b7a6850390ed5d6526ca719e56c5ca.tar.gz
rails-6589976533b7a6850390ed5d6526ca719e56c5ca.tar.bz2
rails-6589976533b7a6850390ed5d6526ca719e56c5ca.zip
Remove old files, add some information to docs and improve test suite.
Diffstat (limited to 'actionmailer/README')
-rw-r--r--actionmailer/README2
1 files changed, 0 insertions, 2 deletions
diff --git a/actionmailer/README b/actionmailer/README
index 542996f87b..e0e2ee436a 100644
--- a/actionmailer/README
+++ b/actionmailer/README
@@ -22,7 +22,6 @@ the email.
This can be as simple as:
class Notifier < ActionMailer::Base
-
delivers_from 'system@loudthinking.com'
def welcome(recipient)
@@ -30,7 +29,6 @@ This can be as simple as:
mail(:to => recipient,
:subject => "[Signed up] Welcome #{recipient}")
end
-
end
The body of the email is created by using an Action View template (regular