d198574
11-04-2002, 06:16 PM
I have a small problem. I have writen some code for my father's company, that simply put; is attached to an e-mail - to produce a HTML E-mail. On submission of the form, it should be sent to the addressee. This performs fine in Outllook 2000, but not in Outlook 97. I am yet to try Express or XP.
Code Listing....
<form action="mailto:d198574@yahoo.com?subject=Information Request" method="post" enctype="text/plain">
<center>
<table cellspacing=10>
<tr>
<td valign="top">
<input type="checkbox" value="Futher" name="LaunderChannels">Launder Channels<br>
<input type="checkbox" value="Futher" name="WeirPlates">Weir Plates<br>
<input type="checkbox" value="Futher" name="Scumboards">Scumboards<br>
<input type="checkbox" value="Futher" name="DiffuserDrums">Diffuser Drums<br>
<input type="checkbox" value="Futher" name="ScumSkimmerBlades">Scum Skimmer Blades<br>
<input type="checkbox" value="Futher" name="BafflePlates">Baffle Plates<br>
<input type="checkbox" value="Futher" name="OdourControlCovers">Odour Control Covers<br>
<input type="checkbox" value="Futher" name="AccessHatches">Access Hatches<br>
<input type="checkbox" value="Futher" name="Kiosks">Kiosks<br>
<input type="checkbox" value="Futher" name="Cabinets">Cabinets<br>
<input type="checkbox" value="Futher" name="MushroomVentilators">Mushroom Ventilators<br>
</td>
<td width=50>
</td>
<td valign=top align=right>
<b>Name: </b><input type="text" size="20" name="NAME"><br>
<b>Company: </b><input type="text" size="20" name="COMPANY"><br>
<b>Address: </b><textarea name="ADDRESS"></textarea><br>
<b>Post Code: </b><input type="text" name="POSTCODE" size="20"><br>
<b>Telephone: </b><input type="text" name="TELEPHONE" size="20"><br>
<b>Fax: </b><input type="text" name="FAX" size="20"><br>
<b>Email: </b><input type="text" name="EMAIL"><br>
</td>
</tr>
</table>
<input name="submit" type="submit" value="Contact Me">
<input type="reset" name="Reset" value="Reset">
</center>
</form>
YOUR HELP IS MUCH APPRECIATED
Code Listing....
<form action="mailto:d198574@yahoo.com?subject=Information Request" method="post" enctype="text/plain">
<center>
<table cellspacing=10>
<tr>
<td valign="top">
<input type="checkbox" value="Futher" name="LaunderChannels">Launder Channels<br>
<input type="checkbox" value="Futher" name="WeirPlates">Weir Plates<br>
<input type="checkbox" value="Futher" name="Scumboards">Scumboards<br>
<input type="checkbox" value="Futher" name="DiffuserDrums">Diffuser Drums<br>
<input type="checkbox" value="Futher" name="ScumSkimmerBlades">Scum Skimmer Blades<br>
<input type="checkbox" value="Futher" name="BafflePlates">Baffle Plates<br>
<input type="checkbox" value="Futher" name="OdourControlCovers">Odour Control Covers<br>
<input type="checkbox" value="Futher" name="AccessHatches">Access Hatches<br>
<input type="checkbox" value="Futher" name="Kiosks">Kiosks<br>
<input type="checkbox" value="Futher" name="Cabinets">Cabinets<br>
<input type="checkbox" value="Futher" name="MushroomVentilators">Mushroom Ventilators<br>
</td>
<td width=50>
</td>
<td valign=top align=right>
<b>Name: </b><input type="text" size="20" name="NAME"><br>
<b>Company: </b><input type="text" size="20" name="COMPANY"><br>
<b>Address: </b><textarea name="ADDRESS"></textarea><br>
<b>Post Code: </b><input type="text" name="POSTCODE" size="20"><br>
<b>Telephone: </b><input type="text" name="TELEPHONE" size="20"><br>
<b>Fax: </b><input type="text" name="FAX" size="20"><br>
<b>Email: </b><input type="text" name="EMAIL"><br>
</td>
</tr>
</table>
<input name="submit" type="submit" value="Contact Me">
<input type="reset" name="Reset" value="Reset">
</center>
</form>
YOUR HELP IS MUCH APPRECIATED