diff options
author | Guilherme Goettems Schneider <guigs81@gmail.com> | 2015-05-26 13:49:41 -0300 |
---|---|---|
committer | Guilherme Goettems Schneider <guigs81@gmail.com> | 2015-05-26 13:49:41 -0300 |
commit | ac6180ec1b25563405cbcb868804a098424e3a0f (patch) | |
tree | 97912b83f591a50219d93d4f40ffbdd115b2667c /guides/source | |
parent | b1f6be9b5ea9eae4f6c5762852027d4808a037e2 (diff) | |
download | rails-ac6180ec1b25563405cbcb868804a098424e3a0f.tar.gz rails-ac6180ec1b25563405cbcb868804a098424e3a0f.tar.bz2 rails-ac6180ec1b25563405cbcb868804a098424e3a0f.zip |
Fix email with name format in Guides. [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_mailer_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index 92a4081233..bf3bf5d19e 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -344,7 +344,7 @@ The same format can be used to set carbon copy (Cc:) and blind carbon copy Sometimes you wish to show the name of the person instead of just their email address when they receive the email. The trick to doing that is to format the -email address in the format `"Full Name <email>"`. +email address in the format `"Full Name" <email>`. ```ruby def welcome_email(user) |