2
0

🩹 (sendEmail) Save error first in logs

This commit is contained in:
Baptiste Arnaud
2023-02-24 07:47:13 +01:00
parent 0dad07770c
commit 761e1c7184

View File

@ -102,6 +102,7 @@ const sendEmail = async ({
resultId, resultId,
message: 'Email not sent', message: 'Email not sent',
details: { details: {
error: 'No email body found',
transportConfig, transportConfig,
recipients, recipients,
subject, subject,
@ -146,12 +147,12 @@ const sendEmail = async ({
resultId, resultId,
message: 'Email not sent', message: 'Email not sent',
details: { details: {
error: err,
transportConfig: { transportConfig: {
...transportConfig, ...transportConfig,
auth: { user: transportConfig.auth.user, pass: '******' }, auth: { user: transportConfig.auth.user, pass: '******' },
}, },
email, email,
error: err,
}, },
}) })
} }