Hi,

Well, I'm almost done with my custom form for my website. I've ran a couple of tests, and they get sent correctly to the right email address. However, I do have a problem...

When I type into the "Comments" field of the form, and click 'send', the email that I receieved contains all of the information that I filled out, EXCEPT for the information in the comments field.

this is what is written in the tpl_birthday_club_default:

<tr>
<td class="plainBoxHeading" align="right" valign="top">Comments (optional):</td>
<td class="main" valign="top"><?php echo zen_draw_textarea_field('comments', 'soft', 8, 4); ?></td>
</tr>



as for the header_php, this is what is written:

$commments = zen_db_prepare_input($_POST['comments']);

//assemble the email contents:
'commments:' . "\t" . $commments . "\n" ;


Am I missing something as "Comments" information is not being sent to me? (All other text fields are fine, except for this one)