<%@ Language=VBScript %> <% 'Response.Write "email : " & Request.Form("txtemail") If Request.Form("txtemail") <> "" Then Dim objMail 'Code to Send Password through CDONTS Set objMail = Server.CreateObject("cdonts.newmail") objMail.From = Request.Form("txtemail") objMail.To = "sanjay@ust.net" objMail.bcc = "ashrafr@yahoo.com, ashraf_r@ust.net" objMail.Subject = "Reference : USTIndia.com -> Request for Contact" MyBody = "Request has been made from " & Request.Form("txtname") & vbCrLf MyBody = MyBody & " of Company " & Request.Form("txtcompanyname") & vbCrLf MyBody = MyBody & " Their Phone no. is : " & Request.Form("txtphone") & vbCrLf MyBody = MyBody & " regarding " & Request.Form("txttitle") & vbCrLf MyBody = MyBody & " Details are : " & Request.Form("txtbody") objMail.Body = MyBody objMail.Importance = 2 'High importance! objMail.Send Set objMail = Nothing %> Request Sent Successfully ...

Thank you for your Request <%=Request.Form("txtname")%>.

Your Request has been sent succesfully. Someone will soon be in contact with you.

Close Window
<% Else %>

Your Name:

Your Company Name:

Your phone :
Your e-mail address:
Title of question:
Question:  

Denotes Required Fields

<% End if %>