I do it like this:

$mail = new Zend_Mail_Storage_Imap
                (
                        array
                        (
                                "host" => "my.exchange.host.com",
                                "user" => "[email protected]",
                                "password" => "mypasswd"
                        )
                );

foreach ($mail as $messageNum => $message)
{
       echo "<fieldset>";
       echo "<legend><strong>#$messageNum:". utf8_encode($message->subject)
."</strong></legend>";
       

       ....etc
}


br, Marko

-----
br,
--------------------------
Marko Korhonen
Technical Consultant
-- 
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/Zend-Mail-MS-Exchange-2007-tp3248477p3248632.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to