can someone see if this script is right as it does not seem to send to my email
<?php
if(isSet($POST['submit'])){
$msg .= $POST['name']."\r\n";
$msg .= $POST['email']."\r\n";
$msg .=$POST['question']."\r\n";
echo "the message is ".$msg."<BR>";
if (!mail("talkster5@hotmail.com","subject", $msg , $headers)){
echo('could not send');
}else{
echo('e-mail sent');
}
}
?>
<form name="form1" id="form1" method="post" action="">
<table width="300" border="1" cellspacing="1" cellpadding="1">
<tr>
<td width="143" height="23" valign="top">Your Name:</td>
<td width="144" valign="top"><input type="text" name="name" /></td>
</tr>
<tr>
<td height="23" valign="top">Your Email:</td>
<td valign="top"><input type="text" name="email" /></td>
</tr>
<tr>
<td height="23" valign="top">Your Question:</td>
<td valign="top"><textarea name="question"></textarea></td>
</tr>
<tr>
<td heigt="23" valign="top">Submit:</td>
<td valign="top"><input type="submit" name="Submit" value="Submit" /></td>
</tr>
</table>
</form>