<% if request.form("ott_order") = "true" then dim messageBody dim crlf crlf = Chr(10) messageBody = "Name: " + request.form("name") + crlf _ + "Email address: " + request.form("email") + crlf _ + "Address: " + request.form("address") + crlf _ + "City: " + request.form("city") + crlf _ + "Prov/State: "+ request.form("prov_state") + crlf _ + "Postal Code/Zip Code: " + request.form("postal_zip") + crlf _ + "Phone Number: "+ request.form("phone") + crlf Set objSendMail = CreateObject("CDONTS.NewMail") objSendMail.From = request.form("name") + "" objSendMail.To = "INTLIMAGE@aol.com" objSendMail.Value("Reply-To") = request.form("email") objSendMail.Subject = "OTT web order (TUXEDO) (" & Date() & ")" objSendMail.BodyFormat = 1 objSendMail.MailFormat = 1 objSendMail.Body = messageBody objSendMail.Send Set objSendMail = Nothing response.redirect("thankyou.htm") else %> The Original Travelling Tailor
Go Back to the Home Page
Coming Soon!
Online ordering of our finely tailored tuxedos will be available early this fall. Until then, please call us at 1-877-877-3449, email INTLIMAGE@aol.com or complete and submit this form to arrange a personalized wardrobe consultation.
 
Name
Email Address
Delivery
Address
City
Province/State
Postal Code/Zip
Daytime Phone

  Please review all entries before submitting your request. Fields with Bold Text must be completed for us to contact you.
 

The Original Travelling Tailor
e-mail: INTLIMAGE@aol.com
Vancouver (604) 644-6079
Calgary (403) 650-8098
Toronto (416) 720-0721
Montreal (519) 254-7909

Toll Free (877) 877-3449

 

<% end if %>