aboutsummaryrefslogtreecommitdiffstats
path: root/tools/config-sample.js
blob: 9f0941d2aa5e2b6c73a61c06e37a855ab354a6e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
exports.config = {
  email: {
    transport: {
      type: 'SMTP',
      options: {
        host: "my-server.com",
        auth: {
          user: 'smtp-user',
          pass: 'password'
        }
      }
    },
    from: 'user@gmail.com'
  }
}