Commit f682c333 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#1707 - Text in welcome mailing gets cut off

parent 2b747a73
......@@ -185,7 +185,8 @@ class mail_plugin {
$mailHeaders .= "From: $welcome_mail_from" . "\n";
$mailHeaders .= "Reply-To: $welcome_mail_from" . "\n";
$mailTarget = $data["new"]["email"];
$mailSubject = "=?utf-8?Q?" . imap_8bit($welcome_mail_subject) . "?=";
// $mailSubject = "=?utf-8?Q?" . imap_8bit($welcome_mail_subject) . "?=";
$mailSubject = "=?utf-8?B?".base64_encode($welcome_mail_subject)."?=";
mail($mailTarget, $mailSubject, $welcome_mail_message, $mailHeaders);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment