From 1d130f52bc99453c1bc5324bf661d5a4e7a4e31d Mon Sep 17 00:00:00 2001 From: Johannes Theiner Date: Wed, 2 Feb 2022 15:38:50 +0100 Subject: [PATCH] add utf-8 encoding --- submit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submit.php b/submit.php index 9c67039..3e56fb2 100644 --- a/submit.php +++ b/submit.php @@ -89,7 +89,7 @@ try { } catch (\PHPMailer\PHPMailer\Exception $e) { echo $e->getMessage(); } - +$mail->CharSet="UTF-8"; $mail->Subject = 'Bestätigung einer Eintragung'; $mail->AltBody = 'Bitte bestätige deine Eintragung unter folgendem Link: ' . $config['url'] . "/verify.php/?id=" . $uuid; $mail->Body = 'Bitte bestätige deine Eintragung bitte hier';