Me parece que me estoy haciendo un lio... disculparme, he empezado de cero, antes me llegaba el email pero sin datos, ahora no me llega el email, cogiendo la sugerencia de
the_web_saint he cambiado las variables que vienen del html.
<?php
$msg = "ESTOS SON LOS DATOS RECIBIDOS:\n";
$msg .= "Nombre: ".$_GET['nombre']."\n";
$msg .= "E-Mail: ".$_GET['email']."\n"; ;
$msg .= "Mensaje: ".$_GET['mensaje']."\n\n";
$to = "
[email protected]";
$subject = "Prueba de envio";
$mailheaders = "Para: Fernando <> \n";
$mailheaders .= "Reply-To:
[email protected]\n\n";
mail($to, $subject, $msg, $mailheaders);
?>
<HTML>
<HEAD>
<TITLE>Envio Email</TITLE>
</HEAD>
<BODY>
<H1>El siguiente email ha sido enviado con estos datos:</H1>
<P><strong>Tu Nombre:</strong><br>
<?php
$minombre = $_GET['nombre']."<br>";
echo $minombre;
?>
<P><strong>Tu Email:</strong><br>
<?php
$miemail = $_GET['email']."<br>";
echo $miemail;
?>
<P><strong>Tu Mensaje:</strong><br>
<?php
$mimensaje = $_GET['mensaje']."<br>";
echo $mimensaje;
?>
</BODY>
</HTML>