Congratulations, your "&messg&" registration has been completed. Please take a printout of this page for your records. A copy of your registration has been emailed to you at "&email&"
Registration No.:
"&orderno&"
First Name:
"&fname&"
Last Name:
"&lname&"
Date Of Birth:
"&dob&"
Email id:
"&email&"
Postal Address:
"&address&"
Telephone No.:
"&phoneno&"
Mobile No.:
"&mphoneno&"
Educational Qualification:
"&education&"
Professional Experience:
"&experience&"
Courses Options:
"&course&"
USMLE Steps:
"&usmlesteps&"
Amount Payable:
"&paymentamount&"
"
mailBody=mailBody&"
Please Note :
Please retain this page and quote your registration number for any future correspondence with us.
"
if paymentmode =1 then
mailBody=mailBody&"
Write down the registration number on the reverse of your cheque or DD's.
All Chqs/ DD's has to made payable to us within 15 days from the date of transaction, pending which your transaction would be deleted from our records.
Make all cheques/DD's payable to INSCOL ACADEMY at the following address: INSCOL ACADEMY Sector - 34 A Chandigarh - 160022 India Ph: Email: info@inscolacademy.com
"
else
mailBody=mailBody&""
end if
mailBody=mailBody&"
Copyright 2003 INSCOL
"
DIM iMsg, Flds, iConf
Set iMsg = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
Flds(cdoSendUsingMethod) = cdoSendUsingPort
Flds(cdoSMTPServer) = "69.56.178.20"
Flds(cdoSMTPServerPort) = 25
Flds(cdoSMTPAuthenticate) = cdoAnonymous ' 0
Flds.Update
With iMsg
Set .Configuration = iConf
' .To = "daljit@inscol.com"
.To = "hemant@hemant.com"
.From = "Administrator-INSCOLACADEMY"
' .CC = "lily@inscol.com"
.Sender = "admin@inscolacademy.com"
.Subject = mailsubject
' .TextBody = mailBody
.HTMLBody = mailBody
.Send
End With
With iMsg
Set .Configuration = iConf
.To = email
.From = "Administrator - INSCOL ACADEMY"
.Sender = "admin@inscolacademy.com"
.Subject = mailsubject
.HTMLBody = mailBody
.Send
End With
Set iMsg = Nothing
Set iConf = Nothing
fullname = fname & " " & lname
if paymentmode =1 then
redirtoinvoice
else
redirtoccdetails
end if
' response.write "Now Show Invoice"
' response.end
'
'
' response.redirect ("http://www.inscolacademy.com")
' response.redirect ("http://www.inscolacademy.com/thanks.asp?n="&fullname)
' response.end
End If
%>
Inscol Academy
Copyright 2003 INSCOL, Incorporated, All rights
reserved
Terms Of
Use, Privacy Statement Designed & Developed by: NECS
<%
Function SendMail(mailfrom, mailto,mailcc, mailsubject, mailbody)
Dim mymail
set mymail = server.CreateObject("CDONTS.Newmail")
mymail.MailFormat =0
mymail.BodyFormat = 0
mymail.to = mailto
mymail.from = mailfrom
if mailcc<>"" then
mymail.cc = mailcc
end if
mymail.subject = mailsubject
mymail.body = mailbody
mymail.Send
set mymail = nothing
End Function
function redirtoinvoice()
%>
<%
If request("Submit")="Submit" and request("submitflag") = 1 Then
%>
<%
end if
end function
function redirtoccdetails()
%>
<%
If request("Submit")="Submit" and request("submitflag") = 1 Then
%>
<%
end if
end function
%>