HOW TO SEND EMAIL IN HTML FORMATTING TO MORE THAN ONE PERSON THROUGH PHP ?
$headers = "From: name@companyname.co.uk \r\n";
$headers .= "Reply-To: ". strip_tags($email) . "\r\n";
$headers .= "CC: hrcompany@gmail.com\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
//here is the mail function which will send the email
mail($email, $subject, $msg, $headers);