Email used to work and now doesn't... Did something change in the last release? Gmail

Here’s what was working just this past week, but now doesn’t…

Use Gmail for SMTP in Ghost

  1. Create an app specific gmail password - https://security.google.com/settings/security/apppasswords
  2. 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?