[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

@ -49,7 +49,7 @@ public class SmtpMailHandler extends MailHandler {
@Override
public void sendMail(String subject, String text, String recipients, String attachment, String fileName,
String type) {
String type) {
SmtpMailer.getInstance().sendMail(subject, text, recipients, attachment, fileName, type);
}
@ -60,14 +60,14 @@ public class SmtpMailHandler extends MailHandler {
@Override
public void sendMailAsync(String subject, String text, String recipients, String attachment, String fileName,
String type) {
String type) {
getExecutorService("Mail").submit(() -> doSendMail(subject, text, recipients, attachment, fileName, type));
}
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)) {
@ -81,10 +81,10 @@ public class SmtpMailHandler extends MailHandler {
}
private void doSendMail(String subject, String text, String recipients, String attachment, String fileName,
String type) {
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);