<% if Request("submit") = "submit" then ' Have all fields been chosen? strFields = "" if Trim(Request("txtName")) = "" or Trim(Request("txtEmail")) = "" or Trim(Request("txtGradYear")) = "" or Request("optGender") = "" or (Request("cboSat") = "" and Request("cboSun") = "") Then strFields = "*** Please make sure to enter information all required information (Name, Email, Graduation Year and Time Slot). ***" Else If Request("cboSat") <> "" and Request("cboSun") <> "" Then strFields = "*** Please chose only one audition time slot. ***" End If End If if strFields = "" Then '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' '' Customize the following 5 lines with your own information. '' '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' vtoaddress = "roy.gilliam@gmail.com, ddeweese0245@wowway.com" ' Change this to the email address you will be receiving your notices. vmailhost = "mymail.brinkster.com" ' Change this to mail.yourDomain or leave as is. vfromaddress = "auditions@tetelestaithemusical.com" ' Change this to the email address you will use to send and authenticate with. vfrompwd = "t3t3l3stai" ' Change this to the above email addresses password. vsubject = "2012 Tetelestai Audition Sign Up" 'Change this to your own email message subject. ''''''''''''''''''''''''''''''''''''''''''' '' DO NOT CHANGE ANYTHING PAST THIS LINE '' ''''''''''''''''''''''''''''''''''''''''''' vmsgbody = "2012 Tetelestai Audition Request

" vmsgbody = vmsgbody & "
" vmsgbody = vmsgbody & "Name: " & request("txtName") & "
" vmsgbody = vmsgbody & "
" vmsgbody = vmsgbody & "Email: " & request("txtEmail") & "
" vmsgbody = vmsgbody & "
" vmsgbody = vmsgbody & "Grad Year: " & request("txtGradYear") & "
" vmsgbody = vmsgbody & "
" vmsgbody = vmsgbody & "Gender: " & request("optGender") & "
" vmsgbody = vmsgbody & "
" vmsgbody = vmsgbody & "Time Slot: " If Trim(request("cboSat")) <> "" Then vmsgbody = vmsgbody & "Saturday January 7 at " & request("cboSat") & "
" Else vmsgbody = vmsgbody & "Sunday January 8 at "& request("cboSun") & "
" End If vmsgbody = vmsgbody & "
" vmsgbody = vmsgbody & "Comments/Notes: " & request("txtComments") & "
" Set objEmail = Server.CreateObject("Persits.MailSender") objEmail.Username = vfromaddress objEmail.Password = vfrompwd objEmail.Host = vmailhost objEmail.From = vfromaddress objEmail.AddAddress vtoaddress objEmail.Subject = vsubject objEmail.Body = vmsgbody objEmail.IsHTML = True objEmail.Send Set objEmail = Nothing vErr = Err.Description if vErr <> "" then strFields = "*** There was an error submitting your request. Please try again. If you continue to have problems please email " strFields = strFields & "auditions@tetelestaithemusical.com. ***" else response.redirect("signup_success.asp?satslot=" & request("cboSat") & "&sunslot=" & request("cboSun")) End If End If end if %> Tetelestai The Musical - 2012 Audition Sign Up - Columbus, OH

2012 Audition Sign Up

Auditions are being held on Saturday January 7, 2012 from 10:00am to 12:00pm and on Sunday January 8, 2012 from 12:00pm to 3:00pm. In order to guarantee a prompt audition experience for you we ask that you sign up for a time slot below. We will be auditioning 9 people each hour.

<% If strFields <> "" Then Response.Write "

" & strFields & "

" End If %>

Please send an email to DeEtte DeWeese to schedule an audition: deettemail@gmail.com