Merge pull request 'hotFix: handle mail error' (!2253) from hotFix_handleMailErrors into master
Reviewed-on: #2253 Reviewed-by: Carlos Satorres <carlossa@verdnatura.es>
This commit is contained in:
commit
20e4ab1d2c
|
@ -46,7 +46,7 @@ module.exports = Self => {
|
|||
html += `<strong>${data}</strong>:<br/>${tryParse(additionalData[data])}<br/>`;
|
||||
|
||||
const subjectReason = httpRequest?.data?.error;
|
||||
smtp.send({
|
||||
await smtp.send({
|
||||
to: `${config.app.reportEmail}, ${emailUser.email}`,
|
||||
subject:
|
||||
'[Support-Salix] ' +
|
||||
|
|
|
@ -175,7 +175,7 @@ module.exports = async function(ctx, Self, tickets, reqArgs = {}) {
|
|||
to: config.app.reportEmail,
|
||||
subject: '[API] Nightly ticket closure report',
|
||||
html: body,
|
||||
});
|
||||
}).catch(err => console.error(err));
|
||||
}
|
||||
|
||||
async function invalidEmail(ticket) {
|
||||
|
@ -206,6 +206,6 @@ module.exports = async function(ctx, Self, tickets, reqArgs = {}) {
|
|||
to: ticket.salesPersonEmail,
|
||||
subject: 'No se ha podido enviar el albarán',
|
||||
html: body,
|
||||
});
|
||||
}).catch(err => console.error(err));
|
||||
}
|
||||
};
|
||||
|
|
|
@ -88,7 +88,7 @@ class Email extends Component {
|
|||
force: options.force
|
||||
};
|
||||
|
||||
return smtp.send(mailOptions);
|
||||
return await smtp.send(mailOptions);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue