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;