Skip to content

Commit 5b2f0ee

Browse files
authored
Merge pull request #225 from davellanedam/development
Development
2 parents 28a9aee + 6c6d123 commit 5b2f0ee

File tree

4 files changed

+535
-694
lines changed

4 files changed

+535
-694
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v9.0.3 (January 23, 2020)
2+
3+
* NPM updated
4+
* Fixed test failing in Windows 10 ([#221](https://github.com/davellanedam/node-express-mongodb-jwt-rest-api-skeleton/issues/221))
5+
* Fixed mailgun in european regions ([#222](https://github.com/davellanedam/node-express-mongodb-jwt-rest-api-skeleton/issues/222))
6+
* Fixed i18n and helmet in normal dependencies ([#224](https://github.com/davellanedam/node-express-mongodb-jwt-rest-api-skeleton/issues/224))
7+
18
## v9.0.2 (November 16, 2020)
29

310
* NPM updated

app/middleware/emailer/sendEmail.js

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const sendEmail = async (data = {}, callback) => {
1313
api_key: process.env.EMAIL_SMTP_API_MAILGUN,
1414
domain: process.env.EMAIL_SMTP_DOMAIN_MAILGUN
1515
}
16+
// host: 'api.eu.mailgun.net' // THIS IS NEEDED WHEN USING EUROPEAN SERVERS
1617
}
1718
const transporter = nodemailer.createTransport(mg(auth))
1819
const mailOptions = {

0 commit comments

Comments
 (0)