i've to send email on registration . Right now this is what i'm doing ,
$bodymessaage= '<table border="0" cellpadding="0" cellspacing="0" width="100%" >';
$bodymessaage.='</table>'
my images are live on server and i've set their paths as absolute , i've set these headers
<?php $headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";?>
and in mail function is like this .
mail($to, $subject, $bodymessaage, $headers);
now mail is being sent with with all images and stles that are inline , my question is how do i attach css file that is in head section of my html email in style tags ,Please help me to sort this issue ,