fechas
This commit is contained in:
@@ -15,8 +15,10 @@ const correoPrimerSemestre = (numeroCuenta, nombre, lic, date) => {
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Te esperamos en la entrada peatonal de la Facultad (sobre Av. San Juan Totoltepec), el próximo <b>${fecha.date()}/${
|
||||
fecha.month() + 1
|
||||
Te esperamos en la entrada peatonal de la Facultad (sobre Av. San Juan Totoltepec), el próximo <b>${
|
||||
fecha.date() < 10 ? '0' + fecha.date() : fecha.date()
|
||||
}/${
|
||||
fecha.month() + 1 < 10 ? '0' + (fecha.month() + 1) : fecha.month() + 1
|
||||
}/${fecha.year()}</b> a las <b>${
|
||||
fecha.hour() < 10 ? '0' + fecha.hour() : fecha.hour()
|
||||
}:${fecha.minute() < 10 ? '0' + fecha.minute() : fecha.minute()}h</b>.
|
||||
@@ -69,13 +71,16 @@ const correoTercerSemestre = (numeroCuenta, nombre, lic, date) => {
|
||||
|
||||
return {
|
||||
subject: `Comprobante de registro recorrido.`,
|
||||
message: `<h2>Estimada(o) ${nombre}</h2>
|
||||
message: `<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma-rtl.min.css">
|
||||
<h2>Estimada(o) ${nombre}</h2>
|
||||
<h3><b>Alumna(o) de la Generación 2021</b>,<br>Licenciatura: <b>${lic}</b></h3>
|
||||
|
||||
<p>
|
||||
<p class="is-size-1">
|
||||
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 <b>${fecha.date()}/${
|
||||
fecha.month() + 1
|
||||
la entrada peatonal (sobre Av. San Juan Totoltepec), el próximo <b>${
|
||||
fecha.date() < 10 ? '0' + fecha.date() : fecha.date()
|
||||
}/${
|
||||
fecha.month() + 1 < 10 ? '0' + (fecha.month() + 1) : fecha.month() + 1
|
||||
}/${fecha.year()}</b> a las <b>${
|
||||
fecha.hour() < 10 ? '0' + fecha.hour() : fecha.hour()
|
||||
}:${
|
||||
|
||||
Reference in New Issue
Block a user