coetzerl
Feb 22nd, 2012, 12:33 PM
Hi,
I've got an issue with a HTML form that use to work fine on the website and then recently stopped working.
Once you input the information into the form and click on Submit, it produces the e-mail from my e-mail client, with the Send To email address, as well as the Subject, BUT it omits all of the information that is suppose to show in the body of the email (so the information that was filled out in the form).
Here is what the code looks like:
<form name="form1" method="post" onsubmit="return checkpasswords();" action="mailto:[email protected]?subject=Request for demonstration" >
<table cellpadding="7" cellspacing="7" style="font-weight:bold">
<tr>
<td width="150">Full Name:</td>
<td><input name="fullname" type="text" size="30" /></td>
</tr>
<tr>
<td>Email Address:</td>
<td><input type="text" name="emailadd" size="30" /></td>
</tr>
<tr>
<td>Company Name:</td>
<td><input type="text" name="coname" size="30" /></td>
</tr>
<tr>
<td>Address:</td>
<td><textarea name="coaddress" cols="26" rows="5"></textarea></td>
</tr>
<tr>
<td>Telephone Number:</td>
<td><input type="text" name="telno" size="30" /></td>
</tr>
</table>
<table cellpadding="7" cellspacing="7" style="font-weight:bold">
<tr>
<td>I would like more information on the products and <br />services offered by Acturis.</td>
<td width="50" align="right"><input name="tick1" type="checkbox" value="Yes" checked /></td>
</tr>
<tr>
<td>I would like someone to contact me to arrange a <br />demonstration.</td>
<td width="50" align="right"><input name="tick2" type="checkbox" value="Yes" checked /></td>
</tr>
<tr>
<td align="center"><br />
<input name="submit" type="submit" value="Submit" /></td>
<td> </td>
</tr>
</table>
</form>
Has anyone else had this experience and know of a solution? It seems to be happening on both IE8 & 9.
Thanks :confused:
I've got an issue with a HTML form that use to work fine on the website and then recently stopped working.
Once you input the information into the form and click on Submit, it produces the e-mail from my e-mail client, with the Send To email address, as well as the Subject, BUT it omits all of the information that is suppose to show in the body of the email (so the information that was filled out in the form).
Here is what the code looks like:
<form name="form1" method="post" onsubmit="return checkpasswords();" action="mailto:[email protected]?subject=Request for demonstration" >
<table cellpadding="7" cellspacing="7" style="font-weight:bold">
<tr>
<td width="150">Full Name:</td>
<td><input name="fullname" type="text" size="30" /></td>
</tr>
<tr>
<td>Email Address:</td>
<td><input type="text" name="emailadd" size="30" /></td>
</tr>
<tr>
<td>Company Name:</td>
<td><input type="text" name="coname" size="30" /></td>
</tr>
<tr>
<td>Address:</td>
<td><textarea name="coaddress" cols="26" rows="5"></textarea></td>
</tr>
<tr>
<td>Telephone Number:</td>
<td><input type="text" name="telno" size="30" /></td>
</tr>
</table>
<table cellpadding="7" cellspacing="7" style="font-weight:bold">
<tr>
<td>I would like more information on the products and <br />services offered by Acturis.</td>
<td width="50" align="right"><input name="tick1" type="checkbox" value="Yes" checked /></td>
</tr>
<tr>
<td>I would like someone to contact me to arrange a <br />demonstration.</td>
<td width="50" align="right"><input name="tick2" type="checkbox" value="Yes" checked /></td>
</tr>
<tr>
<td align="center"><br />
<input name="submit" type="submit" value="Submit" /></td>
<td> </td>
</tr>
</table>
</form>
Has anyone else had this experience and know of a solution? It seems to be happening on both IE8 & 9.
Thanks :confused: