By email without using any server side stuff - really it just needs to go into the default email clients body section with a sutiable subject.
All attempts i have made cant handle all the required fields any suggestions?
this is what i need to send to say outlook express as a new mail:
<form name='Form1'>
<table width="62%" border="1" height="292">
<tr>
<td width="39%">Name (Including Title)</td>
<td width="61%">
<input name='personal' size=60>
</td>
</tr>
<tr>
<td width="39%">House Name/Number & Street</td>
<td width="61%">
<input name='address' size=45>
</td>
</tr>
<tr>
<td width="39%">District</td>
<td width="61%">
<input type="text" name="district" size="40">
</td>
</tr>
<tr>
<td width="39%">Town/City</td>
<td width="61%">
<input name='city' size=40>
</td>
</tr>
<tr>
<td width="39%">County</td>
<td width="61%">
<input name='county' size=40>
</td>
</tr>
<tr>
<td width="39%">Post Code</td>
<td width="61%">
<input name='pcode' size=8>
</td>
</tr>
<tr>
<td width="39%">Country</td>
<td width="61%">
<input type="text" name="country" value="United Kingdom">
</td>
</tr>
<tr>
<td width="39%">Email Address</td>
<td width="61%">
<input type="text" name="email">
</td>
</tr>
<tr>
<td width="39%">Telephone Number</td>
<td width="61%">
<input type="text" name="telephone">
</td>
</tr>
<tr>
<td width="39%">Range Interested In</td>
<td width="61%">
<input type = TEXT name = TextBox size = 35>
</td>
</tr>
<tr>
<td width="39%">Further Comments</td>
<td width="61%">
<textarea name="comments" cols="70" rows="10">Any Further comments can be entered here</textarea>
</td>
</tr>
</table>
<input type=Reset name="Reset">
<br>
</form>


Reply With Quote
Bookmarks