ntrjpatel / codeigniter-imap

IMAP Libray to CodeIgniter

Repository from Github https://github.comntrjpatel/codeigniter-imapRepository from Github https://github.comntrjpatel/codeigniter-imap

IMAP Libray to CodeIgniter

This files enables you to use the IMAP protocol with the CodeIgniter Framework.

Perfect to create your own webmail.

How to use

Load the Imap library:

$this->load->library('imap');

Set the user login config:

$config = array(
			'host'     => 'imap-mail.outlook.com',
			'encrypto' => 'ssl',
			'user'     => 'phpimapclient@outlook.com',
			'pass'     => 'Abcd12345**'
		);

Initialize the connection:

$this->imap->imap_connect($config);

Get the required datas:

$folders = $this->imap->get_folders();

Output example

Output Example

Hey! Wait a minute

I am available for freelance.

Working daily with web development and server administration.

Send a message describing your project to natanfelles@gmail.com and we will make it happen!

About

IMAP Libray to CodeIgniter

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:PHP 100.0%