Merge pull request #15930 from Spidy88/fix/setup-docs

fix(setup): Include MailHog setup instructions
This commit is contained in:
mrugesh mohapatra
2017-10-04 11:26:14 +05:30
committed by GitHub
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
module.exports = {
mail: {
connector: 'mail',
transport: {
type: 'smtp',
host: 'localhost',
secure: false,
port: 1025,
tls: {
rejectUnauthorized: false
}
},
auth: {
user: 'test',
pass: 'test'
}
}
};