include '../inc/db.inc.php';
$adminPage = true;
include '../inc/header.php';
$rows = mysql_query("SELECT count(*) as count FROM gns_alums");
$count = mysql_fetch_assoc($rows);
$count = $count['count'];
$results = mysql_query("SELECT firstname, lastname, email FROM gns_alums WHERE email IS NOT NULL && email != '' ORDER BY lastname, firstname");
?>
To send a mass email, copy this list to the bcc field in Outlook.
|
while($row = mysql_fetch_assoc($results) )
{
echo "$row[firstname] $row[lastname]<$row[email]>";
echo " |
\n";
}
?>
include '../inc/footer.php';
?>