small bug fix

This commit is contained in:
youpie 2025-02-19 23:52:12 +01:00
parent 59ec067d63
commit c72adaf585
No known key found for this signature in database

View file

@ -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;