Skip to content
World Wide Web Server edited this page Jul 4, 2012 · 17 revisions

Here's a basic example:

try this out in a controller after dropping the file named imap_pop.php into the libraries dir: [code] $this->load->library('imap_pop'); // settings for gmail, you must have // SSL support compiled into PHP // and turn on POP in gmail $config['server']='pop.gmail.com:995'; $config['login']='username@gmail.com'; $config['pass']='password'; $config['service_flags'] = '/pop3/ssl/novalidate-cert'; $config['mailbox']='INBOX'; $msg_count = $this->imap_pop->connect_and_count($config); $em = $this->imap_pop->grab_email_as_array(1); $this->imap_pop->close(); print_r($em); [/code]

A zip file with the class: File:imap_pop.php.zip

Clone this wiki locally