From 6cfdb9ac7a7483b4e214282bb1e90aa03eb68f67 Mon Sep 17 00:00:00 2001 From: Lemuel Marquez Date: Wed, 14 Jul 2021 20:59:59 -0500 Subject: [PATCH] fechas --- server/helper/correos.js | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/server/helper/correos.js b/server/helper/correos.js index 7f69c3c..48651ff 100644 --- a/server/helper/correos.js +++ b/server/helper/correos.js @@ -15,8 +15,10 @@ const correoPrimerSemestre = (numeroCuenta, nombre, lic, date) => {

- Te esperamos en la entrada peatonal de la Facultad (sobre Av. San Juan Totoltepec), el próximo ${fecha.date()}/${ - fecha.month() + 1 + Te esperamos en la entrada peatonal de la Facultad (sobre Av. San Juan Totoltepec), el próximo ${ + fecha.date() < 10 ? '0' + fecha.date() : fecha.date() + }/${ + fecha.month() + 1 < 10 ? '0' + (fecha.month() + 1) : fecha.month() + 1 }/${fecha.year()} a las ${ fecha.hour() < 10 ? '0' + fecha.hour() : fecha.hour() }:${fecha.minute() < 10 ? '0' + fecha.minute() : fecha.minute()}h. @@ -69,13 +71,16 @@ const correoTercerSemestre = (numeroCuenta, nombre, lic, date) => { return { subject: `Comprobante de registro recorrido.`, - message: `

Estimada(o) ${nombre}

+ message: ` +

Estimada(o) ${nombre}

Alumna(o) de la Generación 2021,
Licenciatura: ${lic}

-

+

Gracias por registrarte para participar en este recorrido por la FES Acatlán, tu Facultad. La cita es en - la entrada peatonal (sobre Av. San Juan Totoltepec), el próximo ${fecha.date()}/${ - fecha.month() + 1 + la entrada peatonal (sobre Av. San Juan Totoltepec), el próximo ${ + fecha.date() < 10 ? '0' + fecha.date() : fecha.date() + }/${ + fecha.month() + 1 < 10 ? '0' + (fecha.month() + 1) : fecha.month() + 1 }/${fecha.year()} a las ${ fecha.hour() < 10 ? '0' + fecha.hour() : fecha.hour() }:${