Fix move from Mandril to Amazon SES

closes #7240
This commit is contained in:
Berkeley Martinez
2016-04-14 21:02:53 -07:00
parent 0aaffe84bf
commit dcccb1bc5c
2 changed files with 6 additions and 8 deletions

View File

@@ -8,13 +8,10 @@ module.exports = {
},
mail: {
connector: 'mail',
transports: [{
type: 'smtp',
service: 'Mandrill',
auth: {
user: secrets.mandrill.user,
pass: secrets.mandrill.password
}
}]
transport: {
type: 'ses',
accessKeyId: process.env.SES_ID,
secretAccessKey: process.env.SES_SECRET
}
}
};