Dear All,

I'm composing a HTML email. When I send it out it looks fine in all clients 
except outlook which shows the Message-ID.

Heres the basic code:

$html="<html><body><img 
src=\"http://celebrityaccess.com/images/marketing/ca_july_advert.jpg\";></body></html>";

        $recip = "[EMAIL PROTECTED]";
        $subject = "My Subject";
        $body = $html;
        $to = $recip;
        $headers = 'From:[EMAIL PROTECTED] ' . "\r\n" .
   'Reply-To:[EMAIL PROTECTED] ' . "\r\n" .'Content-type: text/html;' . 
"\r\n" . 'MIME-Version: 1.0'."\r\n";

        mail($to,$subject,$body,$headers);

Any thoughts?


-- 
Paul Nowosielski
Webmaster

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

Reply via email to