Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
f682c333
Commit
f682c333
authored
Sep 07, 2011
by
tbrehm
Browse files
Fixed: FS#1707 - Text in welcome mailing gets cut off
parent
2b747a73
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/mail_plugin.inc.php
View file @
f682c333
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment