inicio
fin
inicio
// A que mail?
$para = "tu_email@tu_server.com.ar";
// Con que titulo ?
$subject = "Super Script by Webstudio =)";
//Recorremos todas las variables del Form y armamos el mensaje
$mensaje = "Envio de Formulario desde $REMOTE_ADDR. \n";
while(list($clave, $valor) = each($HTTP_POST_VARS))
$mensaje .= "$clave => $valor \n";
// Algunos headers interesantes
$header[] = "Content-type: text/html";
$header[] = "MIME-Version:1.0";
$header[] = "Content-Transfer-Encoding: 8bit";
mail($para, $subject, $mensaje, implode("\r\n", $header));
if(!empty($HTTP_POST_VARS["redirect"]))
Header("Location: ".$HTTP_POST_VARS["redirect"]);
?>
fin
Some rights of this page's plain text stuffs are reserved for the author.
The Template is generated via PsycHo and is Licensed.