Quote:
Originally Posted by dlittle
(Using 3.5.0) I had to do an HTML mailout yestuday, and had to hack a line to get it to go...
In includes/class_mail.php:
Code:
$headers .= 'Content-Type: text/plain' . iif($encoding, "; charset=\"$encoding\"") . $delimiter;
Change the obvious to:
Code:
$headers .= 'Content-Type: text/html' . iif($encoding, "; charset=\"$encoding\"") . $delimiter;
Something more elegant may come around, but that was my quick fix.
|
the problem is that all mails are senging as HTML
and this hack not works on 3.5.x couse choise "use HTML" are not send to functions.... dont know why...
even i set
Code:
construct_hidden_code('sendhtml', $vbulletin->GPC['sendhtml']);
BR,
Ross