Skip to content
dfmcphee edited this page Dec 2, 2014 · 1 revision

SMTP Configuration

Add something like this to your secrets.json file, replacing the username and password with your Gmail credentials:

"mailer": {
  "fromAddressUsername": "noreply"
  , "transport": {
      "type": "smtp"
    , "options": {
      "host": "smtp.gmail.com",
      "secureConnection" : true,
      "port": "465",
      "auth": {
        "user": "***********@gmail.com",
        "pass": "******************"
      }
    }
  }
},
Clone this wiki locally