<% If Request.Form ("name") <> "" Then name = Request.Form ("name") phone = Request.Form ("phone") mobile = Request.Form ("mobile") email = Request.Form ("email") message = Request.Form ("message") Product = Request.Form ("product") mailbody = "
Feedback
    
  Name
:
"& name &"
 Phon no
:
" & phone & "
 Mobile
:
" & mobile & "
 Email
:
" & email & "
  Products of intrest
:
" & product & "
 Message
:
" & message & "
 
" set objmail=server.createobject("Persits.MailSender") objmail.Host = "mail.anandvidyavihar.net" 'objmail.username = "info@anandvidyavihar.net" 'objmail.password = "password" objmail.from = email objmail.AddAddress "info@anandvidyavihar.net" objmail.subject = "Inquiry from Website" objmail.body = mailbody objmail.ishtml=true x=objmail.send %>
 
Thank you for your Inquiry.
We will get back to you soon.
 
 
<% Else %>
  * - Required    
       
  Name *
:
  Phone No
:
  Mobile
:
  Email *
:
 
  Suggestion / Comments *
:
      
<%End If%>