| Server IP : 172.67.201.108 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/cgny/nympadmin/ |
Upload File : |
<cfabort><cfquery name="getunconf" datasource="#ds#">
SELECT distinct email,winner FROM campbracketvote
where roundnum = 3
and confirmed = 1
group by email
</cfquery>
<cfoutput query="getunconf">
<cftry>
<cfquery name="getname" datasource="#ds#">
select campname from campbracket
where id = #campid#
</cfquery>
<CFMAIL TO="#EMail#"
SUBJECT="Winner Announced - Camp Madness"
FROM="CampMadness Confirmation <[email protected]>"
SERVER="us-smtp-outbound-1.mimecast.com"
timeout="5"
>
<Cfif #winner# eq 1>
Congratulations! Your pick for most "spirited camp" in the Camp Madness competition has advanced to the next bracket. Don't forget to vote again this week for your camp so they advance. Do it now at: https://www.nymetroparents.com/camp-bracket/
Follow all the Camp Madness bracket winners by visiting our Facebook page here:
https://www.facebook.com/nymetroparents
Are you a member of New York Camp Parents 2021 Facebook Group? Join now for ideas, tips and camp fun.
https://www.facebook.com/groups/nycampparents2021
<cfelse>
Sorry, the camp you voted for in the Camp Madness competition is not advancing to the next bracket.
You can follow the results of Camp Madness by visiting our Facebook page here:
https://www.facebook.com/nymetroparents
Are you a member of New York Camp Parents 2021 Facebook Group? Join now for ideas, tips and camp fun.
</Cfif>
</cfmail>
<cfcatch>error</cfcatch>
</cftry>
</cfoutput>done