Este es el codigo de un formulario que tengo:
<?php
if (isset($_POST['enviar'])) { //Submit es como se llama tu boton de envio
$mensaje = "Edad: ".stripslashes($_POST['edad'])."\n";
$message = $mensaje.stripslashes($_POST['message']);
$subject = stripslashes($_POST['$subject']);
$email = stripslashes($_POST['$email']);
mail("flanchesco(arroba)hotmail(dot)com", $subject, $message, "From: $email");
echo "Se ha enviado un email de contacto";
} else { ?>
<table width="50%" border="0">
<tr>
<td>E-mail</td>
<td><form name="form1" method="post" action="">
<input type="text" name="email">
</form></td>
</tr>
<tr>
<td>Edad</td>
<td><form name="edad" method="post" action="">
<input type="text" name="edad">
</form>
</td>
</tr>
<tr>
<td>Asunto</td>
<td><input type="text" name="subject"></td>
</tr>
<tr>
<td>Mensaje</td>
<td><textarea name="message"></textarea></td>
</tr>
<tr>
<td> </td>
<td><form name="form2" method="post" action="">
<input type="submit" name="enviar" value="Enviar">
</form></td>
</tr>
</table>
<? } ?>
El error:
NO ME LLEGA EL MAIL 