Name:
(as presented on Club Horizon Players Card)
Club
Horizon Players Card Number:
Street
Address
City
State
AL
AK
AR
CA
CO
CT
DE
FL
GA
HI
IA
ID
IL
IN
KS
KY
LA
MA
MD
ME
MI
MN
MO
MS
MT
NC
ND
NE
NH
NJ
NM
NV
NY
OH
OK
OR
PA
RI
SC
SD
TN
TX
UT
VA
VT
WA
WI
WV
WY
Zip Code
Please mail me my win/loss report
I will pick-up my win/loss report
I
hereby request that Prairie's Edge Casino Resort owned & operated
by the Upper Sioux Community furnish me with the above requested
recorded information for my personal use. I hereby hold Prairie's
Edge Casino Resort and the Upper Sioux Community harmless of any
errors that may be contained within the requested document. I also
understand that the figures contained within the requested document
may not be indicative of my complete gaming win and or loss and
is only that of which was recorded while utilizing my personal Club
Horizon Players Card.
All
requests will be processed as received. Please allow 7 days for
receipt.
Primary
Account Signature:
Please
Type Name Here
<%
'Copyright Free-CGI.com
Continue = Request.Form("Continue")
Mail_Subject = Request.Form("Mail_Subject")
mailbody=""
checkbody=""
Order = Request.Form("Order")
If Order <> "" Then
Count = 0
StartStr = 0
Order = Order & ","
LenStr = Len(Order)
Do While StartStr < LenStr
StartStr = StartStr + 1
NextStr = InStr(StartStr,Order,",")
KeyName = Trim(Ucase(Mid(Order,StartStr,NextStr - StartStr)))
If Left(Ucase(KeyName),9) = "REQUIRED-" Then
If Request.Form(KeyName)="" Then
Response.Write "
" & Mid(KeyName,10) & " is a required entry, please go back to the form and complete this field "
Response.end
Else
mailbody= mailbody & Mid(KeyName,10) & ": " & Request.Form(KeyName) & chr(13)
checkbody= checkbody & Mid(KeyName,10) & ": " & Request.Form(KeyName) & " "
End If
Else
mailbody= mailbody & KeyName & ": " & Request.Form(KeyName) & chr(13)
checkbody= checkbody & KeyName & ": " & Request.Form(KeyName) & " "
End If
Count = Count + 1
StartStr = NextStr
Loop
Else
For Each Key In Request.Form
If Ucase(Key) <> "ORDER" and Ucase(Key) <> "SUBMIT" and Ucase(Key) <> "RESET" and Ucase(Key) <> "SEND_TO" and Ucase(Key) <> "CONTINUE" and Ucase(Key) <> "MAIL_SUBJECT" and Request.Form(Key).Count = 1 then
If Left(Ucase(Key),9) = "REQUIRED-" Then
If Request.Form(Key)="" Then
Response.Write "
" & Mid(Key,10) & " is a required entry, please go back to the form and complete this field "
Response.end
Else
mailbody= mailbody & Mid(Key,10) & ": " & Request.Form(Key) & chr(13)
checkbody= checkbody & Mid(Key,10) & ": " & Request.Form(Key) & " "
End If
Else
If key = "MAIL_BODY" Then
mailbody= mailbody & Request.Form(Key) & chr(13)
checkbody= checkbody & Request.Form(Key) & " "
Else
mailbody= mailbody & Key & ": " & Request.Form(Key) & chr(13)
checkbody= checkbody & Key & ": " & Request.Form(Key) & " "
End If
End If
End If
Next
End If
Function SendMail(ByVal Message)
'You may need to consult your hosting provider to build this function
Set Mailer = CreateObject("SMTPsvg.Mailer")
'Here you need to enter your mail server to send the email
Mailer.RemoteHost = "mail.prairiesedgecasino.com"
'Here you need to define from where and to whom is the email going
Mailer.FromName = OnlineApplication
Mailer.FromAddress = FromAddress
Mailer.ToName = HumanResources
Mailer.ToAddress = jbestland@prairiesedgecasion.com
Mailer.Subject = Mail_Subject
Mailer.BodyText = Message
SendMail = Mailer.SendMail
End Function
SendMail(mailbody)
%>