ahoj, chcem si spravit mail formular v php, co by nemal byt problem az na to, ze to nejde

ale tak neviem programovat ani nic, len skusam. Tak mam tu dve strany a hadam mi niekto pomoze najst chybu.
send.php
Kód:
<?php
$ip = $_POST['ip'];
$httpref = $_POST['httpref'];
$httpagent = $_POST['httpagent'];
$senduser = $_POST['senduser'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$content = $_POST['content'];
if ($subject!="" and $email!="" and $content!="")
{
mail('lucasvojt@gmail.com', $subject, $content, 'From: ' . $email );
echo "<br><br><br><br><center><font color=blue><b>Email bol odoslaný</b></font></center>";
print("<center><font color=blue><b>Ďakujeme, čoskoro vám odpovieme.</b></font></center><br><br><br>");
}
else
{
echo "<p>Váš Email sa nepodarilo odoslať, nevyplnili ste všetky údaje!</p>";
}
?>
a contact.php
Kód:
<form action="send.php" method="post">
<input type="hidden" name="ip" value="<?php echo $ipi ?>" />
<input type="hidden" name="httpref" value="<?php echo $httprefi ?>" />
<input type="hidden" name="httpagent" value="<?php echo $httpagenti ?>" />
<table>
<tr>
<td>Vaše meno:
</td>
<td>
<input type="text" name="senduser" size="39">
</td>
</tr>
<tr>
<td> Email:
</td>
<td>
<input name="email" size="39">
</td>
</tr>
<tr>
<td>Nadpis:
</td>
<td>
<input name="subject" size="39">
</td>
</tr>
<tr>
<td colspan="2"><textarea name="content" cols="60" rows="10"></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="hidden" name="menu" value="sendmail"><input type="submit" name="sendit" value="Odoslať!"></td>
</tr>
</table>
</form>