swiftmailer is doing encodetorfc2822

This commit is contained in:
Frédéric FRANCE 2018-09-26 10:37:20 +02:00 committed by GitHub
parent 92a3faeaf7
commit 1bac3a0ccf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -408,7 +408,7 @@ class CMailFile
// Give the message a subject
try {
$this->message->setSubject($this->encodetorfc2822($subject));
$this->message->setSubject($subject);
} catch (Exception $e) {
$this->error = $e->getMessage();
}