Tema: Urgente
Ver Mensaje Individual
  #23 (permalink)  
Antiguo 06/05/2009, 15:35
Avatar de Diegoazul
Diegoazul
 
Fecha de Ingreso: mayo-2007
Ubicación: { Dash Berlin }
Mensajes: 1.879
Antigüedad: 17 años
Puntos: 67
Respuesta: Urgente

Y escribe esto en tu php:
Código PHP:
<?php
if(isset($_POST["nombre"]) && isset($_POST["titulo"]) && isset($_POST["mail"]) && isset($_POST["mensaje"]) ){
$fecha date("D-M-y H:i");
$mymail "[email protected]";
$subject "Desde el Sitio.. =)";
$contenido $_POST["nombre"]." Escribio :\n";
$contenido .= $_POST["mensaje"]."\n\n";
$contenido .= "el mensaje se escribio el ".$fecha;
$header "From:".$_POST["mail"]."\nReply-To:".$_POST["mail"]."\n";
$header .= "X-Mailer:PHP/".phpversion()."\n";
$header .= "Mime-Version: 1.0\n";
$header .= "Content-Type: text/plain";
mail($mymail$subjectutf8_decode($contenido) ,$header);
echo 
"&estatus=ok&";
}
?>