diff --git a/internal/notification/smtp_notifier.go b/internal/notification/smtp_notifier.go index 20031d4ef..f7331d88e 100644 --- a/internal/notification/smtp_notifier.go +++ b/internal/notification/smtp_notifier.go @@ -41,7 +41,6 @@ func (n *SMTPNotifier) Send(recipient string, subject string, body string) error msg := "From: " + n.sender + "\n" + "To: " + recipient + "\n" + "Subject: " + subject + "\n" + - "Content-Type: text/html\n" + "MIME-version: 1.0;\nContent-Type: text/html; charset=\"UTF-8\";\n\n" + body