05/03/2012, 03:53
|
| | | Fecha de Ingreso: septiembre-2010 Ubicación: München
Mensajes: 2.445
Antigüedad: 14 años, 2 meses Puntos: 331 | |
Respuesta: Función mail: me llega sin formato Consulta el manual:
Código PHP:
Ver original<?php // Varios destinatarios // subject $titulo = 'Recordatorio de cumpleaños para Agosto'; // message $mensaje = ' <html> <head> <title>Recordatorio de cumpleaños para Agosto</title> </head> <body> <p>¡Estos son los cumpleaños para Agosto!</p> <table> <tr> <th>Quien</th><th>Día</th><th>Mes</th><th>Año</th> </tr> <tr> <td>Joe</td><td>3</td><td>Agosto</td><td>1970</td> </tr> <tr> <td>Sally</td><td>17</td><td>Agosto</td><td>1973</td> </tr> </table> </body> </html> '; // Para enviar un correo HTML mail, la cabecera Content-type debe fijarse $cabeceras = 'MIME-Version: 1.0' . "\r\n"; $cabeceras .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // Cabeceras adicionales // Mail it mail($para, $titulo, $mensaje, $cabeceras); ?>
Saludos
__________________ Fere libenter homines, id quod volunt, credunt. |