Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/01/2011, 19:12
Avatar de gatoblack8
gatoblack8
 
Fecha de Ingreso: septiembre-2010
Mensajes: 23
Antigüedad: 13 años, 6 meses
Puntos: 2
Pregunta como configurar el envio de informacion de un formulario

hola gente:
tengo el siguiente problema. Trabajo en una web con una plantilla que trae todo listo y no puedo configurar el envío de informacion de un formulario a una cuenta de correo gmail. el codigo de este es algo asi:

<?php
Error_Reporting(E_ALL & ~E_NOTICE);

while ($request = current($_REQUEST)) {
if (key($_REQUEST)!='recipient') {
$pre_array=split ("&777&", $request);

$post_vars[key($_REQUEST)][0]=preg_replace ("/<[^>]*>/", "", $pre_array[0]);
$post_vars[key($_REQUEST)][1]=preg_replace ("/<[^>]*>/", "", $pre_array[1]);
}
next($_REQUEST);
}



reset($post_vars);


$subject="From ".$post_vars['mi nombre'][0] ;
$headers= "From: ".$post_vars['[email protected]'][0] ."\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
$message='';
while ($mess = current($post_vars)) {
if ((key($post_vars)!="i") && (key($post_vars)!="[email protected]") && (key($post_vars)!="mi nombre")) {

$message.="<strong>".$mess[1]."</strong>&nbsp;&nbsp;&nbsp;".$mess[0]."<br>";
}
next($post_vars);
}

mail($_REQUEST['recipient'], $subject, "
<html>
<head>
<title>Contact letter</title>
</head>
<body>
<br>
".$message."
</body>
</html>" , $headers);
echo ("Su Mensaje Fué Enviado Satisfactoriamente!");

?>
<script>
resizeTo(300, 300);
</script>