aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_mailer_basics.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-01-21 20:38:04 +0100
committerYves Senn <yves.senn@gmail.com>2013-01-21 20:38:04 +0100
commit7e6e4f2547f18a9b66ea769ec964ae27b853fe2b (patch)
treea0b01a39f88db269ea824ec7313a7e32a7b0f0e0 /guides/source/action_mailer_basics.md
parent5984894fc9779ce625c9264d32d77581bd6c52ba (diff)
downloadrails-7e6e4f2547f18a9b66ea769ec964ae27b853fe2b.tar.gz
rails-7e6e4f2547f18a9b66ea769ec964ae27b853fe2b.tar.bz2
rails-7e6e4f2547f18a9b66ea769ec964ae27b853fe2b.zip
document how to create custom rails environments
Diffstat (limited to 'guides/source/action_mailer_basics.md')
-rw-r--r--guides/source/action_mailer_basics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md
index 590ad5738e..3a9a4e73a6 100644
--- a/guides/source/action_mailer_basics.md
+++ b/guides/source/action_mailer_basics.md
@@ -594,4 +594,4 @@ Before the interceptor can do its job you need to register it with the Action Ma
ActionMailer::Base.register_interceptor(SandboxEmailInterceptor) if Rails.env.staging?
```
-NOTE: The example above uses a custom environment called "staging" for a production like server but for testing purposes.
+NOTE: The example above uses a custom environment called "staging" for a production like server but for testing purposes. You can read [Creating Rails environments](./configuring.html#creating-rails-environments) for more information about custom Rails environments.