Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/09/2007, 09:35
Avatar de jorjo
jorjo
 
Fecha de Ingreso: abril-2007
Ubicación: España
Mensajes: 90
Antigüedad: 17 años, 1 mes
Puntos: 1
Re: Enviar tabla con la función mail

OK, ya lo tengo solucionado:
Código PHP:
$mensaje 
<html>
<body> 
<table> 
<tr><td>Hola Mundo</td></tr>
<table> 
</body> 
<html>"
;  

$cabeceras  'MIME-Version: 1.0' "\r\n"
$cabeceras .= 'Content-type: text/html; charset=iso-8859-1' "\r\n";
    
//Se manda el correo
mail("[email protected]","Tema"$mensaje$cabeceras); 
Un saludo!!