diff options
author | Scott González <scott.gonzalez@gmail.com> | 2017-01-21 10:41:57 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2017-01-21 10:54:36 -0500 |
commit | d09be0b005ecb8c03762cefcaed36d1ac7a75ceb (patch) | |
tree | 420c57e7ef9baac2cabf4d7d9bea42b4619c44b1 /guides | |
parent | 66101a069d12388a4e28b54712b94881b068b2fc (diff) | |
download | rails-d09be0b005ecb8c03762cefcaed36d1ac7a75ceb.tar.gz rails-d09be0b005ecb8c03762cefcaed36d1ac7a75ceb.tar.bz2 rails-d09be0b005ecb8c03762cefcaed36d1ac7a75ceb.zip |
Clean up wording in Action Mailer Basics [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_mailer_basics.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index 0825d54cb7..1bf1a15529 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -160,8 +160,8 @@ When you call the `mail` method now, Action Mailer will detect the two templates #### Calling the Mailer Mailers are really just another way to render a view. Instead of rendering a -view and sending out the HTTP protocol, they are just sending it out through the -email protocols instead. Due to this, it makes sense to just have your +view and sending it over the HTTP protocol, they are just sending it out through +the email protocols instead. Due to this, it makes sense to just have your controller tell the Mailer to send an email when a user is successfully created. Setting this up is painfully simple. |