Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending a HTML Formatted mail

Status
Not open for further replies.

adolsun

Programmer
Jan 13, 2004
52
GB
I have created a form this form should go as HTML formatted to e-mail address.

What I'm thinking is to create a form (I'll call it inform.asp) then another file which is (resultInform.asp) and then (confirmInform.asp) to confirm sending the e-mail. Can anyone give me a hand.

This is inform.asp
--------------------------------------------
<%@ Language=VBScript %>
<%option explicit%>
<HTML><HEAD><title>Send Message</title></HEAD><BODY>
<br>
<form method=post action="resultInform.asp">
<center>
<table border=1 align=center>
<tr>
<td bordercolor=white>From:</td>
<td bordercolor=white><input name=From size=20></td>
<td bordercolor=white></td>
</tr>
<tr>
<td bordercolor=white>To:</td>
<td bordercolor=white><input name=To size=20></td>
<td bordercolor=white></td>
</tr>
<tr>
<td bordercolor=white>Subject:</td>
<td bordercolor=white><input name=Subject size=30></td>
<td bordercolor=white></td>
</tr>
<tr>
<td bordercolor=white>Message:</td>
<td bordercolor=white><input name=Message size=50></td>
<td bordercolor=white></td>
</tr>
<tr>
<td bordercolor=white><input type=submit value="Submit"></td>
<td bordercolor=white><input type=reset value="Reset"></td>
<td bordercolor=white></td>
</tr>
</table>
</center>
</form></BODY></HTML>
--------------------------------------------------------

Thanks in advance !
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top