02/03/2006, 08:38
|
| | | Fecha de Ingreso: enero-2006 Ubicación: Venezuela
Mensajes: 823
Antigüedad: 19 años Puntos: 0 | |
Sería algo asi Código PHP: //
$textF .= "Nombre: ".$_POST["nombre"]."\r\n";
$textF .= "Apellido: ".$_POST["apellido"]."\r\n";
$textF .= "Pais: ".$_POST["pais"]."\r\n";
$enviarEmail = array("[email protected]");
while (list($key,$email) = each($enviarEmail)){
mail($email,"TITULO CORREO", $textF);
}
Suerte |