Código HTML:
<form action="envio.php" method="post"> <table> <tr> <td>Nombre:</td> <td><input type="text" name="nombre" id="nombre" value="" size="50"/></td> </tr> <tr> <td>E-mail:</td> <td> <input type="text" name="mail" id="mail" value="" size="50"/></td> </tr> <tr> <td>Asunto:</td> <td><input type="text" name="asunto" id="asunto" value="" size="50"/></td> </tr> <tr> <td colspan="2"><textarea cols="70" rows="12" name="mensaje" id="mensaje"></textarea></td> </tr> <tr> <td><input type="submit" value="Enviar"/><input type="reset" value="Limpiar"/></td> </tr> </table> </form>
Código PHP:
<?php
$sendTo = "[email protected]";
$nombre = $_POST["nombre"];
$mail = $_POST["mail"];
$asunto = $_POST["asunto"];
$mensaje = $_POST["mensaje"];
$headers .= "";
$message = "\nNombre: " . $nombre . "\nEmail: " . $mail . "\nMensaje: " . $mensaje;
mail($sendTo, $subject, $message, $headers);
?>
¿Hay algún fallo en mi código para que no me llegue el correo?
Gracias de antemano.
Un saludo