UNPKG
keystone-email
Version:
latest (1.1.0)
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Email helper for KeystoneJS Apps
github.com/keystonejs/keystone-email
keystonejs/keystone-email
keystone-email
/
test.config.example.js
17 lines
(14 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Rename to test.config.js and configure your nodemailer transport and auth here. Example SMTP config: */
var
smtpConfig
=
{ host:
'smtp.gmail.com'
, port:
465
, secure:
true
,
// use SSL
auth: { user:
'user@gmail.com'
, pass:
'pass'
, }, };
module
.
exports
= smtpConfig;