
29/12/2005, 17:19
|
| | Fecha de Ingreso: diciembre-2005
Mensajes: 165
Antigüedad: 19 años, 2 meses Puntos: 4 | |
Si solo quieres enviar IMAGENES y TEXTO como si de una pagina HTML se tratara puedes hacerlo asi: $variable = '
<html>
<body>
..... etc .... codigo html y tal ....
</body>
</html>';
$email = '...aqui iria el mail....';
$asunto = '...aqui iria el asunto....; $cabeceras = "Content-type: text/html\r\n";
luego:
mail ($email,$asunto,$variable,$cabeceras);
Hasta luego |