Helpful Information
 
 
Category: Programming Articles
[How To] Send 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!

editing this we will be able to edit the welcome mail with html that is sent to the users when they get registered?

editing this we will be able to edit the welcome mail with html that is sent to the users when they get registered?


Is the answer yes to this qustion?










privacy (GDPR)