Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/10/2006, 19:52
Avatar de Netfrank
Netfrank
 
Fecha de Ingreso: marzo-2006
Ubicación: Las Talitas - Tucumán
Mensajes: 226
Antigüedad: 18 años, 2 meses
Puntos: 3
mail() fallido

El código es este:
Código PHP:
<?

$destinatario
='[email protected],$Email';
$asunto '$Asunto';
$cuerpo ="$Mensaje, <br><br>Firma: $Nombre";

$headers "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";

$headers .= "From: Guia Rural del Norte Argentino <[email protected]>\r\n";
mail($destinatario,$asunto,$cuerpo,$headers);

header ("Location: $HTTP_REFERER?F=OK");

?>
Desde ya muchas gracias.