add utf-8 encoding
This commit is contained in:
parent
18ae1ce4af
commit
1d130f52bc
|
@ -89,7 +89,7 @@ try {
|
||||||
} catch (\PHPMailer\PHPMailer\Exception $e) {
|
} catch (\PHPMailer\PHPMailer\Exception $e) {
|
||||||
echo $e->getMessage();
|
echo $e->getMessage();
|
||||||
}
|
}
|
||||||
|
$mail->CharSet="UTF-8";
|
||||||
$mail->Subject = 'Bestätigung einer Eintragung';
|
$mail->Subject = 'Bestätigung einer Eintragung';
|
||||||
$mail->AltBody = 'Bitte bestätige deine Eintragung unter folgendem Link: ' . $config['url'] . "/verify.php/?id=" . $uuid;
|
$mail->AltBody = 'Bitte bestätige deine Eintragung unter folgendem Link: ' . $config['url'] . "/verify.php/?id=" . $uuid;
|
||||||
$mail->Body = 'Bitte bestätige deine Eintragung bitte <a href="' . $config['url'] . "/verify.php/?id=" . $uuid . '">hier</a>';
|
$mail->Body = 'Bitte bestätige deine Eintragung bitte <a href="' . $config['url'] . "/verify.php/?id=" . $uuid . '">hier</a>';
|
||||||
|
|
Loading…
Reference in New Issue