Monday, 21 July 2014

Send HTML Mail in PHP


Send HTML Mail in PHP

If u want to Send HTML Mail, Set this parameter in PHP

// To send HTML mail, the Content-type header must be set

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

No comments: