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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Email a form

Status
Not open for further replies.

wekurn

Technical User
Joined
Sep 23, 2001
Messages
3
Location
US
Can a form that I create in DW3 be used to send info to an email box / address without .asp?
Can the page visitor fill out the form and press "subit" and send the info to my mailbox? My host package does not support .asp. How can I do this?

THANKS!!!

Bill
 
sure you can, this is wha I use on my site:

<html>
<head>
<title>Submit</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>

</head>

<body bgcolor=&quot;#000000&quot; text=&quot;ffffff&quot;>
<table width=&quot;510&quot; border=&quot;0&quot;>
<tr>
<td valign=&quot;top&quot; align=&quot;center&quot;>
<div id=&quot;Layer5&quot; style=&quot;position:absolute; width:170px; height:83px; z-index:5; left: 183px; top: 35px&quot;><img src=&quot;sitepickimage.gif&quot; width=&quot;175&quot; height=&quot;83&quot; border=&quot;0&quot; align=&quot;left&quot;>
<br>
<br>
</div>
<p> </p>
<p> </p>
<br>
<form name=&quot;form1&quot; method=&quot;post&quot; action=mailto:&quot;youremailhere@cs.com?subject=Thanks for comming here.&quot;>
<table width=&quot;430&quot; border=&quot;0&quot; height=&quot;207&quot;>
<tr>
<td width=&quot;114&quot; align=&quot;left&quot; valign=&quot;middle&quot; height=&quot;32&quot;><i><b><font color=&quot;bda94c&quot; size=&quot;3&quot;>Name</font></b></i></td>
<td width=&quot;306&quot; align=&quot;left&quot; valign=&quot;top&quot; height=&quot;32&quot;> <font color=&quot;bda94c&quot; size=&quot;3&quot;>
<input type=&quot;text&quot; name=&quot;textfield5&quot; size=&quot;30&quot; maxlength=&quot;30&quot;>
</font></td>
</tr>
<tr>
<td width=&quot;114&quot; align=&quot;left&quot; valign=&quot;middle&quot; height=&quot;31&quot;><i><b><font color=&quot;bda94c&quot; size=&quot;3&quot;>Your
E-Mail</font></b></i></td>
<td width=&quot;306&quot; align=&quot;left&quot; valign=&quot;top&quot; height=&quot;31&quot;> <font color=&quot;bda94c&quot; size=&quot;3&quot;>
<input type=&quot;text&quot; name=&quot;textfield8&quot; size=&quot;30&quot; maxlength=&quot;30&quot;>
</font></td>
</tr>
<tr align=&quot;center&quot; valign=&quot;middle&quot;>
<td width=&quot;114&quot; height=&quot;22&quot;>
<p><i><b><font color=&quot;bda94c&quot; size=&quot;3&quot;>
<input type=&quot;submit&quot; name=&quot;Submit3&quot; value=&quot;OK, i'm done&quot;>
</font></b></i></p>
</td>
<td width=&quot;306&quot; align=&quot;left&quot; height=&quot;22&quot;>
<p><font color=&quot;bda94c&quot; size=&quot;3&quot;>
</font><font color=&quot;bda94c&quot; size=&quot;3&quot;>
<input type=&quot;reset&quot; name=&quot;Submit4&quot; value=&quot;OOPS, made a booboo&quot;>
</font></p>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>

The only thing is tha this way, even though some ppl. tell me otherwise, sends the information all in one line...but test it out and see what it does for you...
Just in case, DW has an extension that can also create the form for you and send it to you're email box nice and neat, but it also sends the informaion enclosed in an advertisement...check tha out as well...the name of the extension is: Feedback-O-Matic I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top