diff options
author | Jon Moss <me@jonathanmoss.me> | 2017-05-24 19:40:00 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2017-05-24 19:40:00 -0400 |
commit | c7dd4a7a9f20216091399a30a9750a8cf598798e (patch) | |
tree | 9c2c3bbd5cb4386fd817b25a362f0a9bf8b1468e /guides | |
parent | 61434723faa42561a6626449233d1179b1e0a48a (diff) | |
download | rails-c7dd4a7a9f20216091399a30a9750a8cf598798e.tar.gz rails-c7dd4a7a9f20216091399a30a9750a8cf598798e.tar.bz2 rails-c7dd4a7a9f20216091399a30a9750a8cf598798e.zip |
Capitalize Gmail
`gmail` --> `Gmail`
[ci skip]
Diffstat (limited to 'guides')
-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 baea924c7f..7751ac00df 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -781,7 +781,7 @@ config.action_mailer.smtp_settings = { enable_starttls_auto: true } ``` Note: As of July 15, 2014, Google increased [its security measures](https://support.google.com/accounts/answer/6010255) and now blocks attempts from apps it deems less secure. -You can change your gmail settings [here](https://www.google.com/settings/security/lesssecureapps) to allow the attempts. If your Gmail account has 2-factor authentication enabled, +You can change your Gmail settings [here](https://www.google.com/settings/security/lesssecureapps) to allow the attempts. If your Gmail account has 2-factor authentication enabled, then you will need to set an [app password](https://myaccount.google.com/apppasswords) and use that instead of your regular password. Alternatively, you can use another ESP to send email by replacing 'smtp.gmail.com' above with the address of your provider. |