Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/09/2005, 02:28
Avatar de JuanKa
JuanKa
 
Fecha de Ingreso: septiembre-2004
Mensajes: 468
Antigüedad: 19 años, 7 meses
Puntos: 1
Problemas con boton submit en servidor de correo

Hola a todos.

Tengo un problema al momento de presionar sobre un boton que se encuentra dentro de un email que no se me dirige al action que le pongo.

Pero lo raro es que esto si me va en el Outlook Express y me va perfecto, No tengo problemas, inclusive se me los fondos,imagenes. Pero cuando lo recibo en un hotmail, yahoo, the Bact, etc el boton no me va se queda alli ni si quiera se dirije al action que le pongo, pero en el Outlook si me va.

<?
$asunto="Pago de Reservas";
$var_email =$_POST["txt_email"];

$destinatario=$var_email;

$var_mensaje =$_POST["txt_mensaje"];
$var_importe =$_POST["txt_importe"];
$var_nombres = $_POST["o_nombres"];
$var_personas = $_POST["o_personas"];
$var_tipo_habitacion= $_POST["o_tipo_habitacion"];
$var_fecha_entrada = $_POST["o_fecha_entrada"];
$var_fecha_salida = $_POST["o_fecha_salida"];

$cuerpo='
<html>
<head>
<title>Bienvenidos</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body { background-image: url(http://www.midominio.com/Imagenes/fondo1.gif);}
.Estilo1 { font-family: Verdana, Arial, Helvetica, sans-serif; color: #000000; font-size: 14px; }
.Estilo7 { font-family: Verdana, Arial, Helvetica, sans-serif; color: #0000CC; font-size: 14px; }
.Estilo8 { font-family: Verdana, Arial, Helvetica, sans-serif; color: #FFFFFF; font-size: 14px; }
.Estilo17 { font-family: Verdana, Arial, Helvetica, sans-serif; color: #F1A434; font-size: 14px; }
.Estilo21 { font-family: Verdana, Arial, Helvetica, sans-serif; color: #990000; font-size: 14px; }
.Estilo23 { font-family: Verdana, Arial, Helvetica, sans-serif; color: #F1A434; font-size: 14px; font-weight: bold; }
</style>
</head>
<body>
<div align="center">
<form action="http://www.midominio.com/comprar.php" method="post" name="frm_pago" id="frm_pago">
<table width="760">
<tr>
<td width="175" height="30" class="Estilo7">Nombres </td>
<td width="13"> <div align="center" class="Estilo21">:</div></td>
<td width="556"><span class="Estilo1">'.$var_nombres.'</span></td>
</tr>
<tr>
<td height="30" class="Estilo7">Fecha de Ingreso </td>
<td><div align="center" class="Estilo21">:</div></td>
<td><span class="Estilo1">'.$var_fecha_entrada.'</span></td>
</tr>
<tr>
<td height="30" class="Estilo7">Fecha de Salida</td>
<td><div align="center" class="Estilo21">:</div></td>
<td><span class="Estilo1">'.$var_fecha_salida.'</span></td>
</tr>
<tr>
<td colspan="3" class="Estilo7"><table width="350" height="35" align="center">
<tr>
<td width="158">Importe a Pagar </td>
<td width="13"> <div align="center">: </div></td>
<td width="213" bgcolor="#FF0000"><div align="center"><span class="Estilo8">'.$var_importe.' Euros</span></div></td>
</tr>
</table></td>
</tr>
</table>
<input type="submit" name="Submit" value="Pagar con Tarjeta de Cr&eacute;dito">
</form>
</div>
</body>
</html>';

$remitente = "[email protected]";

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

mail($destinatario,$asunto,$cuerpo,$headers) or die ("Su mensaje no se envio.");
?>

Con este script lo recibo TODO bien EN EL OUTLOOK EXPRESS pero este mismo cuando el cliente que quiere pagar tiene una cuenta en hotmail, yahoo, o en cualquier otro correo El Boton SUBMIT no me va.

Que estara pasando.


Gracias y Saludos