Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
mysql_connect("localhost", "mysql_user", "mysql_password") or
die("Could not connect: " . mysql_error());
mysql_select_db("mydb");
$result = mysql_query("SELECT email, name, lastname FROM email_table");
while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
$mail_address = $row[0];
$name = $row[1];
$last_name = $row[2];
$subj = "Subject is here.";
$body_mes = "Dear " . $name . " " . $last_name .",\n\n";
$body_mes .= "blah blah blah...\n";
mail($mail_address, $subj, $body_mes);
}
mysql_free_result($result);
?>