This commit is contained in:
David Arranz 2025-02-20 18:17:01 +01:00
parent 387520045f
commit 2532395b5b
2 changed files with 3 additions and 5 deletions

View File

@ -41,11 +41,6 @@ function sendEmailTransactional(header, body) {
sendSmtpEmail.to = [{ name: header.name, email: header.to }];
if (header.bcc) { sendSmtpEmail.bcc = [{ name: header.bccName, email: header.bcc }] };
console.log('+++++++++++++++++++++++++++++');
console.log(body.Variables);
console.log('+++++++++++++++++++++++++++++');
sendSmtpEmail.subject = header.subject;
sendSmtpEmail.params = body.Variables;

View File

@ -59,6 +59,9 @@ function generateMemberInscription(user, inscription, reservation) {
qrCode: null,
};
}
console.log('>>>>>>>generateMemberInscription>>>>>>');
console.log(memberInscription);
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><>>>>>>');
return memberInscription;
}