aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/README
diff options
context:
space:
mode:
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