Here’s what was working just this past week, but now doesn’t…
Use Gmail for SMTP in Ghost
- Create an app specific gmail password - https://security.google.com/settings/security/apppasswords
- Configure the mail settings of config.production.json to look like this:
"mail": {
"transport": "SMTP",
"options": {
"service": "google",
"host": "smtp.gmail.com",
"port": 587,
"auth": {
"user": "yourusername@gmail.com",
"pass": "app specfic password"
}
}
},
Thoughts?