From ec5327f7ac53fdd811b5516a86f18978d0250250 Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 18 Apr 2010 22:41:25 +0000 Subject: [PATCH] Put back in email sending for new registraitons --- remote.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/remote.php b/remote.php index 6b6fe81..f81ae55 100644 --- a/remote.php +++ b/remote.php @@ -294,10 +294,10 @@ function award_upload_assign(&$fair, &$award, &$prize, &$project, $year, &$respo if($award['external_register_winners'] == 1 && $new_reg == true) { /* This award is for students who are participating in this fair, we need * to get their reg number to them if this is a new registration */ -// email_send("new_participant",$student['email'],array(), -// array( "EMAIL"=>$student['email'], -// "REGNUM"=>$registration['num']) -// ); + email_send("new_participant",$student['email'],array(), + array( "EMAIL"=>$student['email'], + "REGNUM"=>$registration['num']) + ); $response['notice'][] = " - Sent welcome registration email to: {$student['firstname']} {$student['lastname']} <{$student['email']}>"; } }