Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/07/2007, 04:14
xias
 
Fecha de Ingreso: enero-2002
Mensajes: 838
Antigüedad: 22 años, 4 meses
Puntos: 1
Re: envio de email

ya solucione lo del style.

pero ahora tengo otro problema.

los valores de php me aparecen vacios, porque puede ser?? necesitaría añadir alguna cosa mas??

gracias, un saludo.

aqui os dejo el codigo que utilizo.
nota: si lo envio tal cual($usuario...)sin etiquetas html si llega el valor, gracias

$to="[email protected]";
//Asunto
$subject="Nuevo miembro";
//Enviamos el mail
$message = '
<table width="408" height="208" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="56"> <table width="399" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="399" height="19" bgcolor="#EDE4E4"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">Datos
personales</font></td>
</tr>
<tr>
<td height="60" valign="top"> <table width="379" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="57" height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">Nombre</font></td>
<td width="111" height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">$nombre_usuario2</font></td>
<td width="110" height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">&nbsp;</font></td>
<td width="101" height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">&nbsp;</font></td>
</tr>
<tr>
<td height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">Apellido1</font></td>
<td height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px"><?php echo $apellido12; ?></font></td>
<td height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">Apellido2</font></td>
<td height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px"><?php echo $apellido22; ?></font></td>
</tr>
<tr>
<td height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">Tel&eacute;fono</font></td>
<td height="18"> <font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px"><?php echo $telefono2; ?></font></td>
<td height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px">Fecha
de nacimiento</font></td>
<td height="18"><font color="#990000" style="font-family: Tahoma, Verdana; font-size: 11px"><?php echo $fecha_nacimiento2; ?></font></td>
</tr>
</table>
';
$headers = "MIME-Version: 1.0 \n";
$headers .= "Content-type: text/html; charset=iso-8859-1 \n";

mail($to, $subject, $message, $headers);
__________________
Muchas gracias, saludos.