Currently I have a script that send some mail, the script result are a couple html tables:
$from = "prueba.com <noreply@prueba.com>";
$to = "myemail@gmail.com";
echo "<div>";
$contenido = ob_get_contents();
echo "</div>";
$cabeceras = "Content-type: text/html; charset=iso-8859-1 \r\n"
."MIME-Version: 1.0 \r\n"
."To: $cliente <$email> \r\n"
."From: prueba <prueba@example.com> \r\n";
mail($to,$subject,$contenido,$cabeceras);
ob_end_flush();
As might give css to that email? as I have tried several methods and none has worked.
Thanks in advance for your cooperation
EDIT:
THIS is my CODE http://www.mediafire.com/?bq9352xh6paji1d