I have a mail form from my webhost. I have modified to an extent. The only thing I can't figure out is this -- I want to take out thr from line. I can take it out to where it doesn't show up but when I try to send an email I get an error that says check the senders address. I do not want the sender to have to input an address. Is this possible?
This is what I used
Thanks for the help
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta name="GENERATOR" content="IBM WebSphere Studio">
<title>Keith</title>
</head>
<body>
<p>Please Fill out the form below and press "Send Email" to
submit:</p>
<form action="/cgi-bin/readSend.cgi" method="post">
<table border="0">
<tbody>
<tr>
<td align="right" width="51">To:</td>
<td>
Keith
<!-- CHANGE THE "VALUE" TAG BELOW TO EDIT OR ADD RECIPIENT --><input
name="TO" value="my email address" type="hidden">
</td>
</tr>
<tr>
<td align="right" width="51">From:</td>
<td><input size="67" name="FROM"
type="text"></td>
</tr>
<tr>
<td align="right" width="51">Subject:</td>
<td><input size="67" name="SUBJECT"
type="text"></td>
</tr>
<tr>
<td colspan="2"><textarea rows="15"
cols="80" name="BODY" wrap="virtual"></textarea></td>
</tr>
<tr>
<td width="51"></td>
<td align="right"><input name="submit"
value="Send Email" type="submit"><input
name="clear" value="Clear Fields" type="reset"></td>
</tr>
</tbody>
</table>
</form>
</body>
</html>