Home Admin Balance Sheet Logout

"; function notify_admin ($mailto, $mailmessage, $mail_headers) { mail("$mailto", "Super Bowl Squares", "$mailmessage", "$mail_headers"); } ?>

Send Email to ALL

Click the button below to send an email to everyone and let them know the numbers have been picked and assigned for them to view and print as needed.
 

Emails send to:

"; $bodyMessage = "\r\nNOTIFICATION\r\n"; $bodyMessage .= "All squares have been selected and all numbers have been picked and assigned.\r\n"; $bodyMessage .= "You can view and print your own sheet at $sb_URL.\r\n\n"; $bodyMessage .= "Good Luck and enjoy the game.\r\n\n"; $bodyMessage .= "$commissioner\r\n"; $headers = "From: $commissioner <$ADMIN_EMAIL>\r\n"; $sql="SELECT * FROM VNSB_squares ORDER BY EMAIL"; $result = mysqli_query($conn,$sql); if (!$result) { echo mysqli_error(); exit; } while ($record = mysqli_fetch_assoc($result)) { if ($USER_EMAIL != $record["EMAIL"]) { $USER_NAME = $record["NAME"]; $USER_EMAIL = $record["EMAIL"]; notify_admin($USER_EMAIL,$bodyMessage,$headers); echo "

".$USER_NAME.": ".$USER_EMAIL."

"; } } echo $LINKS; unset($sendemails); $headers = "From: $commissioner <$ADMIN_EMAIL>\r\n"; notify_admin($ADMIN_EMAIL,$bodyMessage,$headers); } ?>