[How To] Send vBulletin emails as HTML instead of plain text
In the includes/class_mail.php on line 256 theres a line
$headers .= ‘Content-Type: text/plain’ . iif($encoding, “; charset=\”$encoding\”") . $delimiter;Â
Change it to
$headers .= ‘Content-Type: text/html’ . iif($encoding, “; charset=\”$encoding\”") . $delimiter;Â
Done!
Â
by








