From b426a63984f0492d1744b07c657128758d75d0df Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 12 Jun 2020 18:49:56 +0200 Subject: [PATCH] fix mail subject encoding --- app/init.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/init.php b/app/init.php index f07ab8333..48771e4f8 100644 --- a/app/init.php +++ b/app/init.php @@ -146,6 +146,7 @@ $register->set('smtp', function () use ($request) { $mail->Password = $password; $mail->SMTPSecure = $request->getServer('_APP_SMTP_SECURE', false); $mail->SMTPAutoTLS = false; + $mail->CharSet = 'UTF-8'; $from = urldecode($request->getServer('_APP_SYSTEM_EMAIL_NAME', APP_NAME.' Server')); $email = $request->getServer('_APP_SYSTEM_EMAIL_ADDRESS', APP_EMAIL_TEAM);