sondev
IS-IT--Management
- Jan 7, 2005
- 22
<form method="post" action="mailto:<recipient>">
<input type="hidden" name="subject" value="Contact Form" />
<table width="533" border="0" cellpadding="2" cellspacing="0">
<tr>
<td width="180" valign="top">Recipient email</td>
<td width="353" valign="top"><input type="text" size="35" maxlength="256" name="recipient" /></td>
</tr>
<tr>
<td width="180" valign="top">Tech name</td>
<td width="353" valign="top"><input type="text" size="35" maxlength="256" name="TECH NAME" /></td>
</tr>
<tr>
<td width="180" valign="top">Tech email</td>
<td width="353" valign="top"><input type="text" size="35" maxlength="256" name="TECH EMAIL" /></td>
</tr>
<tr>
<td width="353" valign="top"><input type="submit" value="Send Message" /> <input type="reset" value="Clear Form" /></td>
</tr>
</table>
</form>
*** I have this form on my page. However, i need this form to submit to the email address in the recipient field. Currently it says it is submitting, but no action occurs. I believe i did not design this form properly where it states:
<form method="post" action="mailto:<recipient>">
If any of you have an answer to how I can auto submit to whatever address is located in the recipient box, please let me know. thanks.