目前我有發一些郵件,腳本結果的腳本有幾個HTML表格:PHP的緩衝輸出,CSS和郵件
$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();
由於可能給CSS來的電子郵件?因爲我嘗試了幾種方法,但都沒有工作。
預先感謝您的合作
編輯:
這是我的代碼http://www.mediafire.com/?bq9352xh6paji1d
什麼在你的$ contenido ???您需要指定css inline – jtheman
$ contenido是將file_get_contents放入數組(具有glob函數的幾個文件)並使用strip_tags的結果。結果是一些html表(文件的一個html表)。 – JuanFernandoz
是的,但如果你想樣式的HTML或者添加HEAD sectiion與CSS或ATT造型內嵌的風格=「」 ... – jtheman