From 31ea5325234469d4712ebdc0f9179e6f9b1f92ba Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Tue, 23 May 2017 16:47:37 +0200 Subject: [PATCH] set charset to utf-8 in sendmail.php script. --- res/php/sendmail.php | 1 + 1 file changed, 1 insertion(+) diff --git a/res/php/sendmail.php b/res/php/sendmail.php index 33abdce..8c5e506 100755 --- a/res/php/sendmail.php +++ b/res/php/sendmail.php @@ -61,6 +61,7 @@ function main($ini) { function sendMail($title, $content, $filename, $address, $ini) { $mail = new PHPMailer; + $mail->CharSet = 'UTF-8'; $mail->setFrom($ini["email"], $ini["name"]); $mail->Subject = $title;