mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
email/phpmailer: fix for bug regarding the sending of the charset information reported by stefan.helzle-at-oscons.de
This commit is contained in:
parent
68ce4a81e1
commit
fd37185922
@ -1295,7 +1295,7 @@ class PHPMailer {
|
||||
$encoding = $this->Encoding;
|
||||
}
|
||||
$result .= $this->TextLine('--' . $boundary);
|
||||
$result .= sprintf("Content-Type: %s; charset =\"%s\"", $contentType, $charSet);
|
||||
$result .= sprintf("Content-Type: %s; charset=\"%s\"", $contentType, $charSet);
|
||||
$result .= $this->LE;
|
||||
$result .= $this->HeaderLine('Content-Transfer-Encoding', $encoding);
|
||||
$result .= $this->LE;
|
||||
|
Loading…
Reference in New Issue
Block a user