aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/action_mailer_basics.textile
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_coder@freenet.de>2009-02-20 13:52:14 +0100
committerAndreas Scherer <andreas_coder@freenet.de>2009-02-20 13:52:14 +0100
commit58e064afd292902bd970c813513ee3727d2f8ae3 (patch)
treebe33d1c1f2c70a8d143f2fa8fa403f5cd394e6c1 /railties/guides/source/action_mailer_basics.textile
parent079eda9ba0d55d1e86eafa8e466702bb5dbb3101 (diff)
downloadrails-58e064afd292902bd970c813513ee3727d2f8ae3.tar.gz
rails-58e064afd292902bd970c813513ee3727d2f8ae3.tar.bz2
rails-58e064afd292902bd970c813513ee3727d2f8ae3.zip
More spurious backticks replaced/removed.
Diffstat (limited to 'railties/guides/source/action_mailer_basics.textile')
-rw-r--r--railties/guides/source/action_mailer_basics.textile3
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/guides/source/action_mailer_basics.textile b/railties/guides/source/action_mailer_basics.textile
index 6fbc21f7e1..71398382be 100644
--- a/railties/guides/source/action_mailer_basics.textile
+++ b/railties/guides/source/action_mailer_basics.textile
@@ -6,8 +6,7 @@ endprologue.
h3. Introduction
-Action Mailer allows you to send emails from your application using a mailer model and views.
-So, in Rails, emails are used by creating models that inherit from ActionMailer::Base that live alongside other models in `app/models`. Those models have associated views that appear alongside controller views in `app/views`.
+Action Mailer allows you to send emails from your application using a mailer model and views. So, in Rails, emails are used by creating models that inherit from +ActionMailer::Base+ that live alongside other models in +app/models+. Those models have associated views that appear alongside controller views in +app/views+.
h3. Sending Emails