1
0
Fork 0
mirror of synced 2024-05-20 20:52:36 +12:00

fix mail subject encoding

This commit is contained in:
Torsten Dittmann 2020-06-12 18:49:56 +02:00
parent 9426fca12a
commit b426a63984

View file

@ -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);