Skip to content
Snippets Groups Projects
Commit f682c333 authored by tbrehm's avatar tbrehm
Browse files

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

parent 2b747a73
No related branches found
No related tags found
No related merge requests found
...@@ -185,7 +185,8 @@ class mail_plugin { ...@@ -185,7 +185,8 @@ class mail_plugin {
$mailHeaders .= "From: $welcome_mail_from" . "\n"; $mailHeaders .= "From: $welcome_mail_from" . "\n";
$mailHeaders .= "Reply-To: $welcome_mail_from" . "\n"; $mailHeaders .= "Reply-To: $welcome_mail_from" . "\n";
$mailTarget = $data["new"]["email"]; $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); mail($mailTarget, $mailSubject, $welcome_mail_message, $mailHeaders);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment