|
<%
id=request("id")
if id="" then
%><% else subject=trim(Request.form("subject")) domain=trim(Request.Form("domain")) email=trim(Request.form("email")) comments=trim(Request.form("comments")) if comments <>"" then comments=replace(comments,chr(10)," ") end if name=trim(Request.form("name")) company=trim(Request.form("company")) %> Thank you for Booking This Service We will get back to you very soon <% '***************Important Code For Mail************************* set Mail=server.CreateObject("cdonts.newmail") Mail.From = "tulsi@dassinfotech.com" 'Specify senders address Mail.to = email 'Specify senders name 'Mail.AddAddress email," " 'Receiver address Mail.Subject ="Thank you for your interest with dassinfotech. We will get back to you very soon" Mail.Body=HTML Mail.MailFormat=0 Mail.BodyFormat=0 Mail.Body =comments Mail.send set Mail=Nothing set Mail2=server.CreateObject("cdonts.newmail") Mail2.From = email Mail2.to = "tulsi@dassinfotech.com" 'Specify senders address Mail2.Subject ="Thank you for your interest with dassinfotech. We will get back to you very soon" Mail2.Body=HTML Mail2.MailFormat=0 Mail2.BodyFormat=0 Mail2.Body =comments Mail2.send set Mail2=Nothing end if %>
|
|