Trying to send email from the contact list from the database and it does not send.
<?php
include_once "../../mysqli_connect.php";
$sql= mysqli_query($dbc, "SELECT * FROM Customer_Info");
while($row= mysqli_fetch_array($sql)){
$email = $row["email"];
$mail_body = file_get_contents('../forms/promo_email_form.html');
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: info@grillontherock\r\n";
$to = "$email";
$subject = "";
$mail_result = mail($to, $subject, $mail_body, $headers);
?>
I have tried many different ways but I have no idea how to send multiple emails.