Welcome Guest, Not a member yet? Register   Sign In
New IMAP library!
#15

[eluser]sophistry[/eluser]
hi promaneX welcome to CI!

i pulled this function out of my imap_pop class to show you how it could be done:
Code:
// loop over the messages by hand
// may be the best function to use
// to allow user feedback (i.e., progress bar)
function get_message_list_loop($start=0, $end=0)
{    
    $a = array();
    
    // start is the id
    // start it one down
    // because id immediately
    // increments in the next loop
    $id = ($start==0) ? 0 : $start-1;
    $end = ($end==0) ? $this->msg_count : $end;

    while ($id++ < $end)
    {
        $a[] = imap_headerinfo($this->IMAP_resource, $id);
        // it is not faster to use imap_fetchheader
        //$a[] = imap_fetchheader($this->IMAP_resource, $id);
    }
    return $a;
}


Messages In This Thread
New IMAP library! - by El Forum - 04-06-2009, 12:36 PM
New IMAP library! - by El Forum - 04-06-2009, 01:51 PM
New IMAP library! - by El Forum - 04-06-2009, 01:56 PM
New IMAP library! - by El Forum - 04-06-2009, 02:11 PM
New IMAP library! - by El Forum - 04-06-2009, 02:50 PM
New IMAP library! - by El Forum - 04-06-2009, 03:12 PM
New IMAP library! - by El Forum - 04-06-2009, 03:38 PM
New IMAP library! - by El Forum - 04-06-2009, 04:44 PM
New IMAP library! - by El Forum - 04-06-2009, 05:03 PM
New IMAP library! - by El Forum - 04-06-2009, 05:38 PM
New IMAP library! - by El Forum - 04-07-2009, 09:11 AM
New IMAP library! - by El Forum - 06-28-2009, 09:36 AM
New IMAP library! - by El Forum - 06-29-2009, 09:50 AM
New IMAP library! - by El Forum - 09-28-2009, 07:58 AM
New IMAP library! - by El Forum - 09-28-2009, 08:18 AM
New IMAP library! - by El Forum - 09-28-2009, 08:29 AM
New IMAP library! - by El Forum - 09-28-2009, 04:16 PM
New IMAP library! - by El Forum - 09-28-2009, 06:10 PM
New IMAP library! - by El Forum - 12-02-2009, 10:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB