diff options
author | Vipul A M <vipulnsward@gmail.com> | 2017-01-21 21:28:05 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-21 21:28:05 +0530 |
commit | 66420cb7f0fde43d1d73b109ebb69e6d063dcc21 (patch) | |
tree | 420c57e7ef9baac2cabf4d7d9bea42b4619c44b1 | |
parent | 66101a069d12388a4e28b54712b94881b068b2fc (diff) | |
parent | d09be0b005ecb8c03762cefcaed36d1ac7a75ceb (diff) | |
download | rails-66420cb7f0fde43d1d73b109ebb69e6d063dcc21.tar.gz rails-66420cb7f0fde43d1d73b109ebb69e6d063dcc21.tar.bz2 rails-66420cb7f0fde43d1d73b109ebb69e6d063dcc21.zip |
Merge pull request #27761 from scottgonzalez/action-mailer-guide
Clean up wording in Action Mailer Basics [ci skip]
-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. |