<%@ Language=VBScript %> <% FROM_EMAIL = "newsastrovision@illuminationsllc.com" TO_EMAIL = "newsastrovision@illuminationsllc.com;paul@illuminationsllc.com;evelyn@illuminationsllc.com" SUBJECT = "Proposal from your Website" SERVER_ADDR = "mail.illuminationsllc.com" REDIRECT_URL= "http://www.illuminationsllc.com/thanks.html" %>

 

Illuminations LLC

Call Toll Free

1-877-BIG NY TV

Illuminations in Times Square

Proposals...

Want to propose?
Wish someone a Happy Birthday or Anniversary?
Here is your chance to do it BIG!

Here's how it works:  Pick a template and fill in the specifics.  If you want to add a custom photo or message.  If the special request can be honored, we will contact you with an estimate for the additional cost.  All personal messages must be pre-paid and sorry, no Credit Cards.  Be sure to include your desired time and date, the message will appear for 5 minutes and must be scheduled at least 2 weeks in advance. This program is not available on New Year's Eve or Thanksgiving Day.

Examples of Templates that will be used for your request

BirthdayCelebrationProposal

<%call process_form()%>
Please complete the form below
Full Name:
Email Address:
Telephone:
Cell Number:
Type of Event:
Comments:
Message Information
To:
From:
Message to appear on board
Please keep it around 30 Characters
<% sub process_form %> <% if Request.Form("submit") = "Submit" and Trim(Request.Form("ImageField")) <> Session("ImageNo") then response.write "

Sorry you have not completed the security box, please try again
" elseif Request.Form("submit") = "Submit" and Trim(Request.Form("ImageField")) = Session("ImageNo") then seBody = " - Feedback Form - " & vbcrlf & "-------------------" & vbcrlf seBody = seBody & "Fullname: " & trim(request.form("fullname")) & vbcrlf seBody = seBody & "E-Mail: " & trim(request.form("email")) & vbcrlf seBody = seBody & "Tel.: " & trim(request.form("tel")) & vbcrlf seBody = seBody & "Mob.: " & trim(request.form("mob")) & vbcrlf seBody = seBody & "Type of Event: " & trim(request.form("typeofevent")) & vbcrlf & vbcrlf seBody = seBody & "Comments: " & vbcrlf & "-------------" & vbcrlf & vbcrlf seBody = seBody & trim(request.form("comments")) seBody = seBody & "To: " & trim(request.form("to")) & vbcrlf seBody = seBody & "From: " & trim(request.form("from")) & vbcrlf seBody = seBody & "Message on Board: " & vbcrlf & "-------------" & vbcrlf seBody = seBody & trim(request.form("message")) Set cdoConfig = CreateObject("CDO.Configuration") With cdoConfig.Fields .Item(cdoSendUsingMethod) = cdoSendUsingPort .Item(cdoSMTPServer) = SERVER_ADDR .Update End With Set cdoMessage = CreateObject("CDO.Message") With cdoMessage Set .Configuration = cdoConfig .From = FROM_EMAIL .To = TO_EMAIL .Subject = SUBJECT .TextBody = seBody .Send End With Set cdoMessage = Nothing Set cdoConfig = Nothing 'Redirecting User response.redirect REDIRECT_URL end if end sub %>