merge
|
@ -4,8 +4,8 @@ var wrap = require('gulp-wrap');
|
|||
var concat = require('gulp-concat');
|
||||
var extend = require('gulp-extend');
|
||||
var merge = require('merge-stream');
|
||||
var fs = require('fs');
|
||||
var del = require('del');
|
||||
var fs = require('fs');
|
||||
var webpack = require('webpack');
|
||||
var WebpackDevServer = require('webpack-dev-server');
|
||||
|
||||
|
|
|
@ -1,2 +1,8 @@
|
|||
node_modules
|
||||
config.json
|
||||
<<<<<<< HEAD
|
||||
config.json
|
||||
=======
|
||||
app.development.json
|
||||
smtp.development.json
|
||||
mysql.development.json
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"name": "MailServer",
|
||||
"version": "1.0.0",
|
||||
"port": 3003,
|
||||
"debug": true,
|
||||
"defaultLanguage": "es",
|
||||
"senderMail": "noreply@localhost",
|
||||
"senderName": ""
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"host": "test-db.verdnatura.es",
|
||||
"port": 3307,
|
||||
"user": "reports",
|
||||
"password": "78ZZv9xsjwRi1j2T",
|
||||
"database": "vn2008"
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"host": "smtp.verdnatura.es",
|
||||
"port": 465,
|
||||
"secure": true,
|
||||
"auth": {
|
||||
"user": "nocontestar",
|
||||
"pass": "ub606cux7op"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"host": "localhost",
|
||||
"port": 3306,
|
||||
"user": "reports",
|
||||
"password": "",
|
||||
"database": ""
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"host": "localhost",
|
||||
"port": 465,
|
||||
"secure": true,
|
||||
"auth": {
|
||||
"user": "noreply",
|
||||
"pass": ""
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"subject": "Cambios en las condiciones de pago",
|
||||
"title": "Cambio en las condiciones",
|
||||
"dear": "Estimado cliente",
|
||||
"bodyDescription": "Le enviamos este email para comunicarle que las condiciones de pago han cambiado. Le indicamos las nuevas condiciones a continuación.",
|
||||
"fiscalAddress": "VERDNATURA LEVANTE SL, B97367486 Avda. Espioca, 100, 46460 Silla _ www.verdnatura.es _ clientes@verdnatura.es",
|
||||
"privacy": "Este mensaje es privado y confidencial, y debe ser utilizado exclusivamente por la persona destinataria del mismo. Si usted ha recibido este mensaje por error, le rogamos lo comunique al remitente y borre dicho mensaje y cualquier documento adjunto que pudiera contener. Verdnatura Levante SL no renuncia a la confidencialidad ni a ningún privilegio por causa de transmisión errónea o mal funcionamiento. Igualmente no se hace responsable de los cambios, alteraciones, errores u omisiones que pudieran hacerse al mensaje una vez enviado."
|
||||
}
|
|
@ -7,6 +7,7 @@ var template = require('../template.js');
|
|||
// Escrito de cambios en méto de pago del cliente
|
||||
router.post('/paymentUpdate', function(request, response) {
|
||||
database.pool.query('SELECT Cliente, `e-mail` AS email FROM Clientes WHERE Id_Cliente = ?', [request.body.user], function(error, rs) {
|
||||
<<<<<<< HEAD
|
||||
var params = {
|
||||
clientName: rs[0].Cliente
|
||||
};
|
||||
|
@ -19,6 +20,15 @@ router.post('/paymentUpdate', function(request, response) {
|
|||
};
|
||||
|
||||
if (mail.send(data)) {
|
||||
=======
|
||||
// Datos del escrito
|
||||
var params = {
|
||||
clientName: rs[0].Cliente
|
||||
};
|
||||
// Obtener plantilla y enviar
|
||||
template.getTemplate('paymentUpdate', 'es', params, function(tplResult) {
|
||||
if (mail.send({recipient: rs[0].email, subject: tplResult.subject, body: tplResult.body})) {
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
response.json({status: "OK"});
|
||||
} else {
|
||||
response.json({status: "ERROR"});
|
||||
|
|
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.4 KiB |
|
@ -1,3 +1,4 @@
|
|||
<<<<<<< HEAD
|
||||
<div style="width:600px;font-family:arial,sans-serif;font-size:16px;color:#555;margin:0 auto">
|
||||
<div style="padding:20px;text-align: center;border-bottom: 1px solid #CCC">
|
||||
<img class="logo" src="https://verdnatura.es/image/logo.png" style="width:307px;margin-bottom: 5px"/>
|
||||
|
@ -32,4 +33,80 @@
|
|||
ejercitar los derechos de acceso, rectificación, cancelación y oposición, comunicándolo por escrito al domicilio social de la entidad.
|
||||
La finalidad del fichero es la gestión administrativa, contabilidad, y facturación.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
=======
|
||||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
<head>
|
||||
<title>{{subject}}</title>
|
||||
<meta charset="utf8"/>
|
||||
</head>
|
||||
<body>
|
||||
<div style="width: 600px;margin: 0 auto;font-family: arial, sans-serif;font-size: 16px;color: #555">
|
||||
<!-- Banner block -->
|
||||
<div style="">
|
||||
<a href="https://www.verdnatura.es"/><img src="cid:header" alt="VerdNatura" style="margin:0"/></a>
|
||||
</div>
|
||||
<!-- Title block -->
|
||||
<div style="padding: 35px 0;margin:0 10px;background-color: #95d831;text-align: center">
|
||||
<h1 style="margin: 0;font-size: 32px;color: #333;">{{title}}</h1>
|
||||
</div>
|
||||
<!-- Mail body block -->
|
||||
|
||||
<!-- Mail body block -->
|
||||
<div style="padding: 20px 0;margin:0 10px">
|
||||
<p style="text-align: justify">{{dear}} <strong style="font-size: 20px">{{clientName}}</strong>,</p>
|
||||
<p style="text-align: justify">{{bodyDescription}}</p>
|
||||
|
||||
<p style="text-align: justify">??</p>
|
||||
<p style="text-align: justify">??</p>
|
||||
</div>
|
||||
<!-- Mail body block -->
|
||||
|
||||
<!-- Action button block -->
|
||||
<div style="margin:0 10px;text-align: center;background-color: #333;overflow:hidden">
|
||||
<a href="https://www.verdnatura.es" target="_blank" style="width:50%;display:block;float:left;font-size:16px;font-weight:bold;color:#FFF">
|
||||
<div style="float:left;padding:35px 20px 20px 20px;text-align:center">Visitar Verdnatura</div>
|
||||
<div style="float:right;width:80px;background-color:#95d831;padding: 20px 0"><img src="cid:arrow" style="margin:0"/></div>
|
||||
</a>
|
||||
<a href="https://goo.gl/forms/j8WSL151ZW6QtlT72" target="_blank" style="width:50%;display:block;float:left;font-size:16px;font-weight:bold;color:#FFF">
|
||||
<div style="float:left;padding:35px 20px 20px 20px;text-align:center">Ayúdanos a mejorar</div>
|
||||
<div style="float:right;width:80px;background-color:#95d831;padding: 20px 0"><img src="cid:chat" alt="Encuesta" style="margin:0"/></div>
|
||||
</a>
|
||||
</div>
|
||||
<!-- Action button block -->
|
||||
|
||||
<!-- Networks block -->
|
||||
<div style="padding:20px 0;margin:0 10px;background-color:#555;text-align:center">
|
||||
<a href="https://www.facebook.com/Verdnatura" target="_blank" style="text-decoration:none;margin-right: 10px">
|
||||
<img src="cid:facebook" alt="Visita nuestro Facebook" style="width:50px;margin:0"/>
|
||||
</a>
|
||||
<a href="https://www.twitter.com/Verdnatura" target="_blank" style="text-decoration:none;margin-right: 10px">
|
||||
<img src="cid:twitter" alt="Visita nuestro Twitter" style="width:50px;margin:0"/>
|
||||
</a>
|
||||
<a href="https://www.youtube.com/Verdnatura" target="_blank" style="text-decoration:none;margin-right: 10px">
|
||||
<img src="cid:youtube" alt="Visita nuestro canal de Youtube" style="width:50px;margin:0"/>
|
||||
</a>
|
||||
<a href="https://www.pinterest.com/Verdnatura" target="_blank" style="text-decoration:none;margin-right: 10px">
|
||||
<img src="cid:pinterest" alt="Visita nuestro Pinterest" style="width:50px;margin:0"/>
|
||||
</a>
|
||||
<a href="https://www.instagram.com/Verdnatura" target="_blank" style="text-decoration:none;margin-right: 10px">
|
||||
<img src="cid:instagram" alt="Visita nuestro Instagram" style="width:50px;margin:0"/>
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/verdnatura" target="_blank" style="text-decoration:none;margin-right: 10px">
|
||||
<img src="cid:linkedin" alt="Visita nuestro Linkedin" style="width:50px;margin:0"/>
|
||||
</a>
|
||||
</div>
|
||||
<!-- Networks block -->
|
||||
|
||||
<!-- Privacy block -->
|
||||
<div style="padding:20px 0;margin:0 10px;font-size:10px;font-weight:100">
|
||||
<p style="text-align: justify">{{fiscalAddress}}</p>
|
||||
<p style="text-align: justify">- AVISO - Este mensaje es privado y confidencial, y debe ser utilizado exclusivamente por la persona destinataria del mismo. Si usted ha recibido este mensaje por error, le rogamos lo comunique al remitente y borre dicho mensaje y cualquier documento adjunto que pudiera contener. Verdnatura Levante SL no renuncia a la confidencialidad ni a ningún privilegio por causa de transmisión errónea o mal funcionamiento. Igualmente no se hace responsable de los cambios, alteraciones, errores u omisiones que pudieran hacerse al mensaje una vez enviado.</p>
|
||||
<p style="text-align: justify">En cumplimiento de lo dispuesto en la Ley Orgánica 15/1999, de Protección de Datos de Carácter Personal, le comunicamos que los datos personales que facilite se incluirán en ficheros automatizados de VERDNATURA LEVANTE S.L., pudiendo en todo momento ejercitar los derechos de acceso, rectificación, cancelación y oposición, comunicándolo por escrito al domicilio social de la entidad. La finalidad del fichero es la gestión administrativa, contabilidad, y facturación.</p>
|
||||
</div>
|
||||
<!-- Privacy block -->
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
module.exports = {
|
||||
<<<<<<< HEAD
|
||||
|
||||
=======
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
/**
|
||||
* Obtiene las variables de entorno
|
||||
* @param {String} env - Nombre de la variable de entorno
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<<<<<<< HEAD
|
||||
var Settings = require('../Settings.js');
|
||||
|
||||
module.exports = {
|
||||
|
@ -10,4 +11,9 @@ module.exports = {
|
|||
console.log('## ' + Settings.name + ' ##');
|
||||
console.log('##########################################################');
|
||||
}
|
||||
=======
|
||||
module.exports = {
|
||||
|
||||
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
};
|
||||
|
|
|
@ -1,9 +1,16 @@
|
|||
var mysql = require('mysql');
|
||||
<<<<<<< HEAD
|
||||
var settings = require('./Settings.js');
|
||||
var logger = require('./Logger.js');
|
||||
|
||||
module.exports = {
|
||||
|
||||
=======
|
||||
var settings = require('./settings.js');
|
||||
var logger = require('./logger.js');
|
||||
|
||||
module.exports = {
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
/**
|
||||
* Variable de instancia del pool
|
||||
*/
|
||||
|
@ -13,7 +20,11 @@ module.exports = {
|
|||
* Iniciar pool de conexión con la base de datos
|
||||
*/
|
||||
init: function() {
|
||||
<<<<<<< HEAD
|
||||
this.pool = mysql.createPool(settings.mysql);
|
||||
=======
|
||||
this.pool = mysql.createPool(settings.mysql());
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
||||
this.pool.getConnection(function(error, connection) {
|
||||
if (error) {
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
var fs = require('fs');
|
||||
var settings = require('./settings.js');
|
||||
var path = require('path');
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* Devuelve las claves de idioma de una plantilla
|
||||
* @param {String} templateName - Nombre de la plantilla
|
||||
* @param {String} langCode - Código de idioma
|
||||
* @return {Object} Devuelve el objeto con las claves de idioma
|
||||
*/
|
||||
load: function(templateName, langCode) {
|
||||
var localeFile = path.join(__dirname, 'Language', `${langCode}.${templateName}.json`);
|
||||
var defaultLocaleFile = path.join(__dirname, 'Language', `${settings.defaultLanguage}.${templateName}.json`);
|
||||
|
||||
if (fs.existsSync(localeFile)) {
|
||||
return require(localeFile);
|
||||
} else if (fs.existsSync(defaultLocaleFile)) {
|
||||
return require(defaultLocaleFile);
|
||||
}
|
||||
|
||||
throw new Error('No se ha encontrado ninguna traducción para la plantilla ' + templateName + '.');
|
||||
}
|
||||
};
|
|
@ -1,3 +1,4 @@
|
|||
<<<<<<< HEAD
|
||||
|
||||
// Tipos de advertencias
|
||||
global.__LOG_INFO = 1;
|
||||
|
@ -25,4 +26,34 @@ module.exports = {
|
|||
console.log('[ERROR] -> ' + message);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
=======
|
||||
|
||||
/**
|
||||
* Tipos de advertencias
|
||||
*/
|
||||
global.__LOG_INFO = 1;
|
||||
global.__LOG_WARNING = 2;
|
||||
global.__LOG_ERROR = 3;
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* Imprimir advertencia directamente en consola
|
||||
* @param {Integer} type Constante tipo de advertencia
|
||||
* @param {String} message Mensaje a mostrar
|
||||
*/
|
||||
print: function(type, message) {
|
||||
switch (type) {
|
||||
case __LOG_INFO:
|
||||
console.log(`[INFO] -> ${message}`);
|
||||
break;
|
||||
case __LOG_WARNING:
|
||||
console.log(`[WARN] -> ${message}`);
|
||||
break;
|
||||
case __LOG_ERROR:
|
||||
console.log(`[ERROR] -> ${message}`);
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
|
|
@ -1,10 +1,21 @@
|
|||
var nodemailer = require('nodemailer');
|
||||
<<<<<<< HEAD
|
||||
var settings = require('./Settings.js');
|
||||
var logger = require('./Logger.js');
|
||||
|
||||
// Módulo para el envío de emails
|
||||
module.exports = {
|
||||
|
||||
=======
|
||||
var settings = require('./settings.js');
|
||||
var logger = require('./logger.js');
|
||||
var path = require('path');
|
||||
|
||||
/**
|
||||
* Módulo para el envío de emails
|
||||
*/
|
||||
module.exports = {
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
transporter: null,
|
||||
|
||||
/**
|
||||
|
@ -12,7 +23,11 @@ module.exports = {
|
|||
* carga el fichero de configuración.
|
||||
*/
|
||||
init: function() {
|
||||
<<<<<<< HEAD
|
||||
this.transporter = nodemailer.createTransport(settings.smtp);
|
||||
=======
|
||||
this.transporter = nodemailer.createTransport(settings.smtp());
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
||||
this.transporter.verify(function(error, success) {
|
||||
if (error) {
|
||||
|
@ -23,6 +38,7 @@ module.exports = {
|
|||
});
|
||||
},
|
||||
|
||||
<<<<<<< HEAD
|
||||
/**
|
||||
* Envia un email con los datos recibidos desde un vector.
|
||||
* @param {Object} data - Datos para el envío del email
|
||||
|
@ -33,16 +49,49 @@ module.exports = {
|
|||
to: data.recipient,
|
||||
subject: data.subject,
|
||||
html: data.body
|
||||
=======
|
||||
/**
|
||||
* Envia un email con los datos recibidos desde un vector.
|
||||
* @param {Object} data - Datos para el envío del email
|
||||
*/
|
||||
send: function(data) {
|
||||
var filePath = 'Template/images/';
|
||||
let mailOptions = {
|
||||
from: '"' + settings.app().senderName + '" <' + settings.app().senderMail + '>',
|
||||
to: data.recipient,
|
||||
subject: data.subject,
|
||||
html: data.body,
|
||||
attachments: [
|
||||
{filename: 'header.png', path: path.join(__dirname, filePath, 'header.png'), cid: 'header'},
|
||||
{filename: 'arrow.png', path: path.join(__dirname, filePath, 'arrow.png'), cid: 'arrow'},
|
||||
{filename: 'chat.png', path: path.join(__dirname, filePath, 'chat.png'), cid: 'chat'},
|
||||
{filename: 'facebook.png', path: path.join(__dirname, filePath, 'facebook.png'), cid: 'facebook'},
|
||||
{filename: 'twitter.png', path: path.join(__dirname, filePath, 'twitter.png'), cid: 'twitter'},
|
||||
{filename: 'youtube.png', path: path.join(__dirname, filePath, 'youtube.png'), cid: 'youtube'},
|
||||
{filename: 'pinterest.png', path: path.join(__dirname, filePath, 'pinterest.png'), cid: 'pinterest'},
|
||||
{filename: 'instagram.png', path: path.join(__dirname, filePath, 'instagram.png'), cid: 'instagram'},
|
||||
{filename: 'linkedin.png', path: path.join(__dirname, filePath, 'linkedin.png'), cid: 'linkedin'}
|
||||
]
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
};
|
||||
|
||||
this.transporter.sendMail(mailOptions, (error, info) => {
|
||||
if (error) {
|
||||
logger.print(__LOG_ERROR, error);
|
||||
<<<<<<< HEAD
|
||||
} else if (Settings.debug) {
|
||||
=======
|
||||
} else if (settings.app().debug) {
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
logger.print(__LOG_INFO, 'Se ha enviado el email ' + info.messageId + ' [' + info.response + ']');
|
||||
|
||||
return true;
|
||||
}
|
||||
});
|
||||
<<<<<<< HEAD
|
||||
},
|
||||
}
|
||||
}
|
||||
=======
|
||||
}
|
||||
};
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
|
|
@ -4,6 +4,7 @@ var settings = require('./settings.js');
|
|||
|
||||
// Página por defecto
|
||||
router.get('/', function(request, response) {
|
||||
<<<<<<< HEAD
|
||||
response.send(settings.name + ' v' + settings.version);
|
||||
});
|
||||
|
||||
|
@ -12,5 +13,15 @@ router.use('/manuscript', require('./Route/Manuscript.js'));
|
|||
|
||||
// Rutas de las notificaciones.
|
||||
router.use('/notification', require('./Route/Notification.js'));
|
||||
=======
|
||||
response.send(settings.app().name + ' v' + settings.app().version);
|
||||
});
|
||||
|
||||
// Rutas de los escritos.
|
||||
router.use('/manuscript', require('./Route/manuscript.js'));
|
||||
|
||||
// Rutas de las notificaciones.
|
||||
router.use('/notification', require('./Route/notification.js'));
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
||||
module.exports = router;
|
||||
|
|
|
@ -1,2 +1,51 @@
|
|||
<<<<<<< HEAD
|
||||
// Módulo de configuración
|
||||
module.exports = require('./config.json');
|
||||
=======
|
||||
|
||||
var path = require('path');
|
||||
|
||||
/**
|
||||
* Módulo de configuración
|
||||
*/
|
||||
module.exports = {
|
||||
/**
|
||||
* Obtiene la configuración en función del entorno en el que se está
|
||||
* ejecutando la aplicación.
|
||||
* @param {String} name Nombre del fichero
|
||||
* @return {Object} Objeto de configuración
|
||||
*/
|
||||
getConfig: function(name) {
|
||||
let env = process.env.NODE_ENV;
|
||||
|
||||
if (!env)
|
||||
env = 'development';
|
||||
|
||||
return require(path.join(__dirname, 'Config', `${name}.${env}.json`));
|
||||
},
|
||||
|
||||
/**
|
||||
* Configuración de la aplicación
|
||||
* @return {Object} Objeto de configuración app
|
||||
*/
|
||||
app: function() {
|
||||
return this.getConfig('app');
|
||||
},
|
||||
|
||||
/**
|
||||
* Configuración de smtp
|
||||
* @return {Object} Objeto de configuración smtp
|
||||
*/
|
||||
smtp: function() {
|
||||
return this.getConfig('smtp');
|
||||
},
|
||||
|
||||
/**
|
||||
* Configuración de mysql
|
||||
* @return {Object} Objeto de configuración MySQL
|
||||
*/
|
||||
mysql: function() {
|
||||
return this.getConfig('mysql');
|
||||
}
|
||||
};
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
var fs = require('fs');
|
||||
var mustache = require('mustache');
|
||||
var database = require('./database.js');
|
||||
<<<<<<< HEAD
|
||||
var logger = require('./logger.js');
|
||||
|
||||
var Template = {
|
||||
|
@ -28,6 +29,35 @@ var Template = {
|
|||
callback(body);
|
||||
});
|
||||
}
|
||||
=======
|
||||
var language = require('./language.js');
|
||||
var path = require('path');
|
||||
|
||||
var Template = {
|
||||
/**
|
||||
* Obtiene la plantilla.
|
||||
* @param {String} templateName - Nombre de la plantilla
|
||||
* @param {Object} langCode - Código del idioma
|
||||
* @param {Object} params - Datos a reemplazar.
|
||||
* @param {Object} callback - Callback
|
||||
*/
|
||||
getTemplate: function(templateName, langCode, params, callback) {
|
||||
database.pool.query('SELECT name, attachmentPath FROM vn.mailTemplates WHERE name = ?', [templateName], function(error, rs) {
|
||||
// Comprobamos que exista la plantilla
|
||||
if (rs.length == 0)
|
||||
throw new Error('La plantilla ' + templateName + ' no existe');
|
||||
|
||||
var langParams = language.load(templateName, langCode);
|
||||
params = Object.assign({}, langParams, params);
|
||||
var templatePath = path.join(__dirname, 'Template', `${rs[0].name}.html`);
|
||||
|
||||
if (!fs.existsSync(templatePath))
|
||||
throw new Error('No se ha podido cargar la plantilla ' + templateName + '.html');
|
||||
|
||||
Template.render(templatePath, params, function(tplBody) {
|
||||
callback({subject: params.subject, body: tplBody});
|
||||
});
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -8,6 +8,11 @@
|
|||
"express": "^4.15.3",
|
||||
"mustache": "^2.3.0",
|
||||
"mysql": "^2.13.0",
|
||||
<<<<<<< HEAD
|
||||
"nodemailer": "^4.0.1"
|
||||
=======
|
||||
"nodemailer": "^4.0.1",
|
||||
"path": "^0.12.7"
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,10 @@ var settings = require('./Application/settings.js');
|
|||
var mail = require('./Application/mail.js');
|
||||
var logger = require('./Application/logger.js');
|
||||
var database = require('./Application/database.js');
|
||||
<<<<<<< HEAD
|
||||
var terminal = require('./Application/Util/terminal.js');
|
||||
=======
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
||||
// Middleware
|
||||
app.use(bodyParser.json());
|
||||
|
@ -18,6 +21,7 @@ app.use(bodyParser.urlencoded({extended: true}));
|
|||
// Cargar rutas
|
||||
app.use('/', require('./Application/router.js'));
|
||||
|
||||
<<<<<<< HEAD
|
||||
|
||||
app.start = function() {
|
||||
return app.listen(settings.port, function() {
|
||||
|
@ -26,6 +30,15 @@ app.start = function() {
|
|||
database.init();
|
||||
logger.print(__LOG_INFO, 'Servidor de correo iniciado en el puerto ' + settings.port);
|
||||
if (settings.debug) {
|
||||
=======
|
||||
// Iniciar escucha del servidor
|
||||
app.start = function() {
|
||||
return app.listen(settings.app().port, function() {
|
||||
mail.init();
|
||||
database.init();
|
||||
logger.print(__LOG_INFO, 'Servidor de correo iniciado en el puerto ' + settings.app().port);
|
||||
if (settings.app().debug) {
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
logger.print(__LOG_WARNING, 'El modo debug está activado');
|
||||
}
|
||||
});
|
||||
|
@ -35,3 +48,7 @@ if (require.main === module) {
|
|||
app.start();
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
|
||||
>>>>>>> 0c82c83ca33798a69686c98e44de2753bc50c021
|
||||
|
|