From c72adaf58597b7214fb8104e6d21cdb7d98fdd3a Mon Sep 17 00:00:00 2001 From: youpie Date: Wed, 19 Feb 2025 23:52:12 +0100 Subject: [PATCH] small bug fix --- server/notification-providers/smtp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/notification-providers/smtp.js b/server/notification-providers/smtp.js index 35d714f0c..76805f1c2 100644 --- a/server/notification-providers/smtp.js +++ b/server/notification-providers/smtp.js @@ -74,7 +74,7 @@ class SMTP extends NotificationProvider { bcc: notification.smtpBCC, to: notification.smtpTo, subject: subject, - [htmlBody ? 'html' : 'text']: body + [use_html_body ? 'html' : 'text']: body }); return okMsg;