From 90c428c580ffc1fba315ee97750c83cda5129609 Mon Sep 17 00:00:00 2001 From: ConanGH-S Date: Mon, 6 Nov 2023 18:50:00 -0500 Subject: [PATCH] fix (server): now sheduler send emails to apprentices --- server/src/utils/scheduler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/utils/scheduler.ts b/server/src/utils/scheduler.ts index 75a82e7c..4957a1da 100644 --- a/server/src/utils/scheduler.ts +++ b/server/src/utils/scheduler.ts @@ -124,7 +124,7 @@ const sendEmailsToStudents = async (payload: IStudentData[]): Promise => { const item = payload[i] const body = `

Cordial saludo, aprendiz ${item.nombre_aprendiz} ${item.apellido_aprendiz}.


Usted se encuentra reportado sin prácticas actualmente, por favor contáctese con practicasctm@sena.edu.co para buscar una alternativa de prácticas o actualizar su estado.

***Correo generado automáticamente - No responder***

` - await sendEmailAnyBodyNotfile({ body, subject: 'Información: aprendiz notificado sin prácticas', to: 'loremail527@gmail.com' }) + await sendEmailAnyBodyNotfile({ body, subject: 'Información: aprendiz notificado sin prácticas', to: item.email_aprendiz }) await new Promise((resolve) => setTimeout(resolve, 1000)) }