diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2015-09-20 13:37:25 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2015-09-20 13:37:25 +0200 |
commit | e299b515ca62eeb9f9d159d4489ea42782cdd7aa (patch) | |
tree | ea57b1de381bc981b2e9dda60db031139603dd2b /guides/source | |
parent | 9d1aae5c5fc217fd463a643d4be9e10cae079947 (diff) | |
parent | c7000d93e7769cda488c757dafe1ae91e935d7cf (diff) | |
download | rails-e299b515ca62eeb9f9d159d4489ea42782cdd7aa.tar.gz rails-e299b515ca62eeb9f9d159d4489ea42782cdd7aa.tar.bz2 rails-e299b515ca62eeb9f9d159d4489ea42782cdd7aa.zip |
Merge pull request #21690 from amitsuroliya/typo_fix
correcting word smpt -> smtp in ActionMailer guide [ci skip]
Diffstat (limited to 'guides/source')
-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 c39cd34e9a..4800cece82 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -760,8 +760,8 @@ 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 or -use another ESP to send email by replacing 'smpt.gmail.com' above with the address of your provider. +You can change your gmail settings [here](https://www.google.com/settings/security/lesssecureapps) to allow the attempts or +use another ESP to send email by replacing 'smtp.gmail.com' above with the address of your provider. Mailer Testing -------------- |