Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/10/2004, 01:57
boxin
 
Fecha de Ingreso: junio-2004
Ubicación: Buenos Aires
Mensajes: 60
Antigüedad: 19 años, 10 meses
Puntos: 1
Cuando envio un mail los CSS llegan cambiados

Hola, estoy enviando un mail en formato HTML y todo sale bien, me respeta el formato y todo, con el raro inconveniente de que se me modifican los estilos:

Por ejemplo, este es el mensaje que mando en el mail:
Código HTML:
<html>
<head>
<title>titulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.normal {
	FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: #666633; FONT-FAMILY: Arial, Helvetica, sans-serif
}
-->
</style>
</head>

<body>
<font class="normal"><b>mensaje</b></font>
</body>
</html> 
Y esto es lo que recibo:
Código HTML:
<html>
<head>
<title>titulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
normal {
	FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: #666633; FONT-FAMILY: Arial, Helvetica, sans-serif
}
-->
</style>
</head>

<body>
<font class="normal"><b>mensaje</b></font>
</body>
</html> 
No encuentro una explicacion, pero el mensaje se envia sin los . (puntos) correspondientes de cada estilo.

Alguien me podra orientar?
Gracias.