[REQ] Send HTML e-mails

In the includes/class_mail.php on line 256 theres a line
PHP:
$headers .= 'Content-Type: text/plain' . iif($encoding, "; charset=\"$encoding\"") . $delimiter;


Change it to

PHP:
$headers .= 'Content-Type: text/html' . iif($encoding, "; charset=\"$encoding\"") . $delimiter;


Done!

======================================================

Also Look at these MOD if its suitable for you

http://www.vbteam.info/req-addons-template-modifications/5205-req-send-email-html.html

http://www.vbteam.info/vb-3-7-x-addons-template-modifications/8492-html-emails.html
 
Back
Top