code fix and improvements

This commit is contained in:
GotPPay
2018-01-19 20:23:50 +01:00
parent 434d45248c
commit b73086291c
3 changed files with 49 additions and 35 deletions

14
backend/config/email.js Normal file
View File

@@ -0,0 +1,14 @@
var config = {};
config.PORT = 587;
config.SMTP_HOST = 'smtp.mail.com';
config.SECURE = false;
config.AUTH = {
user: 'saburly@mail.com',
pass: 'KeepSaburly',
};
config.FROM_EMAIL = 'saburly@mail.com';
config.SUBJECT = 'Message from Saburly service';
module.exports = config;