HTML:
<html>
<head>
<title>inscripcion</title>
</head>
<body>
<form method="POST" action="prueba.php">
<label for="equipo">equipo:</label>
<input type="text" name="equipo" id="equipo">
<label for="asunto">asunto:</label>
<input type="text" name="asunto" id="asunto">
<label for="email">e-mail:</label>
<input type="text" name="email" id="email">
<input type="submit" value="enviar">
</form>
</body>
</html>
PHP
<?php
$para="[email protected]";
$mensaje= $_POST['equipo'];
$asunto= $_POST['asunto'];
$email= $_POST['email'];
$headers = "MIME-Version:1.0;\r\n";
$headers .= "Content-type: text/html \r\n charset=iso-8859-1; \r\n" ;
$headers .= "From: $email \r\n";
$headers .= "To: $para; \r\n subject:$asunto \r\n";
mail($para, $asunto, $mensaje, $headers);
echo"$mensaje";
echo"$asunto";
echo"$email";
?>
los ultimos echos""; los puse para ver si recojia la informacion del html, como veis es lo mas sencillo, lo unico que he hecho ha sido subirlos a mi hosting con la funcion mail habilitada y probar y no me llega nada.