<% bSubmitted = Request.Form("bSubmitted") 'FORMATTING FOR EMAIL strTo = "dmateo@centrumproperties.com" strFrom = Request.Form("Email") strSubject = "Cité Condos Web Registration Form Submission" strBody = "The following information was submitted to the Cité Condos web site by " strBody = strBody & Request.Form("FirstName") & " " & Request.Form("LastName") & ":" strBody = strBody & vbCrLf & vbCrLf strBody = strBody & Request.Form("FirstName") & " " & Request.Form("LastName") strBody = strBody & vbCrLf strBody = strBody & Request.Form("Address") strBody = strBody & vbCrLf strBody = strBody & Request.Form("City") & ", " & Request.Form("State") & " " & Request.Form("ZipCode") strBody = strBody & vbCrLf strBody = strBody & Request.Form("DayPhone") & " / " & Request.Form("EveningPhone") strBody = strBody & vbCrLf strBody = strBody & Request.Form("Email") strBody = strBody & vbCrLf & vbCrLf strBody = strBody & "Comments: " & Request.Form("Comments") strBody = strBody & vbCrLf %> Cité| Register
 
Cité logo
 
 


If you'd like to know more about Cité, take a minute to register using the form below. And feel free to stop by our Sales Center. For hours and directions, phone 305-573-0700.

 
  <% 'CHECK IF PAGE HAS BEEN SUBMITTED If bSubmitted <> "True" Then %>
Register

Please fill-out and submit the information below and one of our representatives will contact you.

Required Fields *

First Name *   Last Name *

Address

City   State   Zip Code

Day Phone *   Evening Phone

Email Address *

Comments

<% Else Dim objCDOMail 'The CDO object Set objCDOMail = Server.CreateObject("CDONTS.NewMail") objCDOMail.From = strFrom objCDOMail.To = strTo objCDOMail.Subject = strSubject objCDOMail.Body = strBody 'CURRENTLY UNUSED OPTIONS 'objCDOMail.Cc = "6308078047@mobile.mycingular.com" 'objCDOMail.Bcc = "Tom@Coleman-Creative.com" 'objCDOMail.Importance = 1 '(0=Low, 1=Normal, 2=High) 'objCDOMail.AttachFile "c:\path\filename.txt", "filename.txt" 'objCDOMail.BodyFormat = 0 ' CdoBodyFormatHTML 'objCDOMail.MailFormat = 0 ' CdoMailFormatMime objCDOMail.Send Set objCDOMail = Nothing %>

Thank you, your message has been sent. A representative will respond to your request within 72 hours.

Register another person.

<% end if %>