Emailer: fix text-only email

This commit is contained in:
Fabrixxm 2015-02-09 11:21:10 +01:00
parent 6f78a4dcf2
commit ff41cc24bd
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class Emailer {
"Content-Transfer-Encoding: base64\n\n" .
$textBody . "\n";
if (!$email_textonly && !is_null($htmlBody)){
if (!$email_textonly && !is_null($params['htmlVersion'])){
$multipartMessageBody .=
"--" . $mimeBoundary . "\n" . // text/html section
"Content-Type: text/html; charset=UTF-8\n" .