Dear All ,
contact us form i desinged with html .but how can i send the user details as a mail .please am posting my html code .please help me ..
just am using simple html ..
not asp.net ..
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bhuvanesh MohankumarPosted May 10, 2016, 2:51 AM
Are you using any codelogic implementation using C# or PHP?
<%
Dim HTML
Set myMail = CreateObject("CDONTS.NewMail")
HTML = HTML & ""
HTML = HTML & ""
HTML = HTML & " HTML = HTML & "content=""text/html; charset=iso-8859-1"">"
HTML = HTML & " HTML = HTML & " content=""Microsoft Visual Studio 6.0"">"
HTML = HTML & "
HTML = HTML & ""
HTML = HTML & ""
HTML = HTML & "
HTML = HTML & "images/gifs/homepage/microsoft.gif"" BORDER=0 "
HTML = HTML & "WIDTH=167 HEIGHT=36 ALT=""Microsoft Corporation"">"
HTML = HTML & "
"
"HTML = HTML & "Microsoft Exchange CDONTS Example
HTML = HTML & "
"
"HTML = HTML & "CDO for NTS allows an easy way to send mail.
"
HTML = HTML & "This example shows how the content can be "
HTML = HTML & "an HTML page
"
HTML = HTML & "which allows you to send rich text and"
HTML = HTML & "inline graphics.
HTML = HTML & ""
HTML = HTML & ""
myMail.To="[email protected]"
myMail.Subject="Sample CDONTS HTML Message"
myMail.BodyFormat=0
myMail.MailFormat=0
myMail.Body=HTML
myMail.Send
set mymail=nothing
Response.Write "Message Sent"
%>