Currently I have a script that send some mail, the script result are a couple html tables:
$from = "prueba.com <[email protected]>";
$to = "[email protected]";
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 <[email protected]> \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
Maybe you wanted like this: (using
ob_get_clean()
)and lose the last
ob_end_flush();
TEST: