現在、メールを送信するスクリプトがあります。スクリプトの結果は、いくつかの html テーブルです。
$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();
そのメールにcssを与えるかもしれませんか?私はいくつかの方法を試しましたが、どれもうまくいきませんでした。
ご協力いただきありがとうございます
編集: