On Monday 19 February 2007 17:03, Danial Rahmanzadeh wrote:
> how can i use css with mail()?
> thank u

<?php
$data ='';
$fp = fopen ("site/themes/".$arrStat['theme']."/css/main.css","r");
while (!feof($fp)) { $data.= fgets($fp, 16384); }

$mail="
<html>
<head>
        <title>Title</title>
        <style>".$data."</style>
</head>
<body>
Html content
</body>
</html>";

mail('[EMAIL PROTECTED]', 'You are welcome', $mail);
?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to