Tengo este inconveniente, no he podido enviar un email para que me llegue con estilos css, me llega solamente a thunderbird (perfectamente), pero con outlook, me dice que si tiene probelmas para verlo mejor mirarlo via el navegador, y a Gmail directamente no se ve nada sino purso texto.
Tengo lo siguiente:
Código PHP:
Ver original
$asunto = "Green Newsletter"; $cuerpo = ' <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Green Newsletter</title> <style type="text/css"> <!-- body { background:#ffffff url(http://www.domino.com/newsletter/images/bg.jpg) center top repeat-x; margin:0; } .general { font-family:Tahoma; font-size:12px; font-style:normal; font-weight:normal; text-decoration:none; color:#666666; } .general h1 { font-family:Tahoma; font-size:13px; font-style:normal; font-weight:bold; text-decoration:none; color:#fff; } #container { text-align: left; width: 700px; margin: auto; } #content { background:url(http://www.dominio.com/newsletter/images/header.jpg) center top no-repeat; float:left; text-align: left; width: 700px; margin:0; } #title { float:left; text-align:center; width:700px; height:30px; margin:0; padding:20px 0 0 0; } #logo { float:left; text-align:center; width:700px; height:146px; margin:0; } #post_content { float:left; text-align:justify; width:600px; margin:0; padding:30px 50px 30px 50px; } --> </style> </head> <body> <div id="container"> <div id="content" class="general"> <div id="title"> <h1>Green Newsletter</h1> </div> <div id="logo"> </div> <div id="post_content"> '.$_POST['newsletter'].' </div> </div> </div> </body> </html> '; //para el envío en formato HTML $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; //dirección del remitente //dirección de respuesta, si queremos que sea distinta que la del remitente //ruta del mensaje desde origen a destino //direcciones que recibián copia //direcciones que recibirán copia oculta
creo que podrian ser algunos ajustes en los headers?, gracias de antemano por la ayuda