
20/10/2006, 19:52
|
 | | | Fecha de Ingreso: marzo-2006 Ubicación: Las Talitas - Tucumán
Mensajes: 226
Antigüedad: 19 años 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. |