Hello Everyone,
I'm having a similar issue to the one below. I was looking to see if someone answered the question below but never found an answer. Please read the issue below. Thank you.
If I submit a form to email in IE9, it gives me a warning that my email address will be visible but it does not submit the form. It works in FF. here is the code
<form action="mailto:*** Email address is removed for privacy ***?subject=website query/appointment" method="post" name="form1" id="form1" enctype="text/plain" >
<table width="100%" cellspacing="2" cellpadding="2" >
<tr>
<td align="right" class="lists">Name * </td>
<td class="lists"><input type="text" name="Name" /></td>
</tr>
<tr>
<td align="right" class="lists">Email * </td>
<td class="lists"><input type="text" name="Email" /></td>
</tr>
<tr>
<td align="right" class="lists">Cell * </td>
<td class="lists"><input type="text" name="Cell phone number" /></td>
</tr>
<tr>
<td align="right" class="lists">Tel:
</td>
<td class="lists"><input type="text" name="Telephone number" /></td>
</tr>
<tr>
<td align="right" class="lists">Queries: </td>
<td class="lists"><input type="text" name="Any Queries" /></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="submit" />
</td>
</tr>
</table>
</form>