[Minor] Catch throwable mail sending exceptions

This commit is contained in:
Robert von Burg 2023-08-03 16:52:44 +02:00
parent 7fc6c2d8c8
commit 2ae0389f2c
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 5 additions and 5 deletions

View File

@ -67,7 +67,7 @@ public class SmtpMailHandler extends MailHandler {
private void doSendMail(String subject, String text, String recipients) {
try {
SmtpMailer.getInstance().sendMail(subject, text, recipients);
} catch (Exception e) {
} catch (Throwable e) {
logger.error("Failed to send mail \"" + subject + "\" to " + recipients, e);
if (hasComponent(OperationsLog.class)) {
@ -84,7 +84,7 @@ public class SmtpMailHandler extends MailHandler {
String type) {
try {
SmtpMailer.getInstance().sendMail(subject, text, recipients, attachment, fileName, type);
} catch (Exception e) {
} catch (Throwable e) {
logger.error("Failed to send mail \"" + subject + "\" to " + recipients + " with attachment " + fileName,
e);