From 03d6cd5ba13a0aac918734c1f797df4f149d9194 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Wed, 29 Apr 2009 21:34:16 -0700 Subject: CLEANUP: all email now uses the standard header and footer some email functions didn't use myemail, but used sendmail directly. This is now fixed and all emails should have the same header and footer. --- include/game.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'include/game.php') diff --git a/include/game.php b/include/game.php index 1dc4802..9c8c427 100644 --- a/include/game.php +++ b/include/game.php @@ -1798,12 +1798,8 @@ switch($mystatus) $message .= "\nUse these links to have a look at game ".DB_format_gameid($gameid).": \n"; /* send out final email */ - $all = array(); - foreach($userids as $user) { - $all[] = DB_get_email('userid',$user); - /* add links for all players */ $hash = DB_get_hash_from_gameid_and_userid($gameid,$user); $name = DB_get_name('userid',$user); @@ -1811,11 +1807,9 @@ switch($mystatus) $link = "$name: ".$HOST.$INDEX."?action=game&me=".$hash."\n" ; $message .= $link; } - $To = implode(",",$all); - $message .= "\n\n (you can use reply all on this email to reach all the players.)\n"; - $subject = $EmailName.' Game over (game '.DB_format_gameid($gameid).') '; - sendmail($To,$subject,$message); + $subject = ' Game over (game '.DB_format_gameid($gameid).') '; + mymail($userids,$subject,$message); } } else -- cgit v1.2.3-18-g5258