
|
 |
<%mail=request("mail")
if mail = 1 then
name = trim(request.form("name"))
address = trim(request.form("address"))
phone = trim(request.form("phone"))
fax = trim(request.form("fax"))
email = trim(request.form("email"))
query = trim(request.form("query"))
strmail = ""
strmail = strmail + "| "
strmail = strmail + "Name:"+ " | " + name + " | "
strmail = strmail + "| " +"Address:"+ " | " + address +" | "
strmail = strmail + "| " +"Phone:" + " | "+ phone + " | "
if trim(fax) <> "" then
strmail = strmail + "| "+ "Fax:"+ " | " + fax + " | "
end if
strmail = strmail + "| " +"E-Mail ID:" + " | "+ email + " | "
strmail = strmail + "| "+ "Query:" + " | " + query + " | "
set mymail = server.CreateObject("CDONTS.NewMail")
if trim(email)="" then
email = "user@habitat.com"
end if
mymail.from = email
mymail.to = "habitatworld@oldworldhospitality.com"
mymail.mailFormat=0
mymail.BodyFormat=0
mymail.body = strmail
mymail.subject = "Information Sought"
mymail.send
set mymail = nothing
'response.write strmail
response.write "| Thank you for contacting us. Someone from Habitat World will get in touch with you regarding your query. | "
else
%>
Habitat World at India Habitat Centre
Lodhi Road
New Delhi - 110003 (India)
Tel: 91-11-43663333
Fax: 91-11-24682052, 24682054
E-mail: habitatworld@oldworldhospitality.com
To contact us, you can also fill in the details below and click on
the "Submit" button and a Habitat World executives
will get in touch with you regarding your query. |
<%end if %>
|