Ok, so sorry for the desperate plea...but I've been operating a website for about a year now and I have not yet figured out a successful way to have users submit comments to an email address. Here's what I have for the form:
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="350" align="center">
<td align="center"><table border="0" cellspacing="0" cellpadding="1" align="center" bgcolor="#666699"><form method="post" action="thankyou.php" >
<tr align="center">
<td>
<style type="text/css">
<!--
.button { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt}
.textarea { font-family: "MS Sans Serif"; font-size: 9pt; width: 280px}
.input { width: 280px}
-->
</style><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Send Your Comment</b></font></td>
</tr>
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="5" align="center" bgcolor="#FFFFFF" width="290">
<tr>
<td width="149">
<form method="post" onsubmit="return false;" action="#">
<table border="0" cellspacing="0" cellpadding="2" bgcolor="" align="center">
<tr>
<td class="td1"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Name:</font><br>
<input type="text" name="name" maxlength="25" class="input" size="23">
</td>
</tr>
<tr>
<td class="td1"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">e-mail:</font><br>
<input type="text" name="email" size="23" maxlength="50" class="input">
</td>
</tr>
<tr>
<td class="td1"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Comment:</font><br>
<font face="MS Sans Serif" size="1">
<textarea name="message" cols="19" wrap="VIRTUAL" rows="6" class="textarea"></textarea>
</font>
</td>
</tr>
<tr valign="top">
<td>
<input type="submit" value="Submit" class="button" form action="mailto:nosmallwonder@hotmail.com">
<input type="reset" value="Reset" class="button">
<input type="hidden" name="action" value="add">
<input type="hidden" name="id" value="5">
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
There are a few problems. First, I don't know jack about php, and the thankyou.php is just a silly attempt by me to get the form to do something.
I want the comments to be sent to
nosmallwonder@hotmail.com. How can I have this happen?
I know this answer is extremely simple and I'm an html moron...but when you lean by trial and error, this is all the mojo I have to work with.
Thanks!
David Mau