<body>
<p align="center">
<?php
if(!$visitormail == "" && (!strstr($visitormail,"@") || !strstr($visitormail,"."))){
echo "<h2>Regresa e introduce una direción de e-mail valida.</h2>\n";
$badinput = "<h1>¡¡¡MENSAJE NO ENVIADO!!!</h1>\n";
}
if(empty($visitor) || empty($visitormail) || empty($notes )){
echo "<h2>Regresa y completa todos los campos.</h2>\n";
}
echo $badinput;
$todayis = date("l, F j, Y, g:i a") ;
$attn = $attn ;
$subject = $attn;
$notes = stripcslashes($notes);
$message = " $todayis [EST] \n
Asunto: $attn \n
Mensaje: $notes \n
De: $visitor ($visitormail)\n
Información Adicional: IP = $ip \n
Navegador: $httpagent \n
Referido: $httpref \n
";
$from = "De: $visitormail\r\n";
mail("
[email protected]", $subject, $message, $from);
?>
</p>
<p align="center">
Fecha: <?php echo $todayis ?><br>
Gracias: <?php echo $visitor ?> ( <?php echo $visitormail ?> )<br>
Asunto: <?php echo $attn ?><br>
Mensaje:<br>
<?php $notesout = str_replace("\r", "<br/>", $notes);
echo $notesout; ?><br>
</p>
<p align="center"><a href="./inicio.htm" class="link">Inicio</a></p>
</body>