1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

correcting word smpt -> smtp in ActionMailer guide [ci skip]

`smpt.gmail.com` should be `smtp.gmail.com`
This commit is contained in:
amitkumarsuroliya 2015-09-20 16:27:11 +05:30
parent 9d1aae5c5f
commit c7000d93e7

View file

@ -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
--------------