menzo / php-imap

PHP class to access mailbox by POP3/IMAP/NNTP using IMAP extension

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ImapMailbox is PHP class to access mailbox by POP3/IMAP/NNTP using IMAP extension

Features

<?php

require_once('../src/ImapMailbox.php');

// IMAP must be enabled in Google Mail Settings
define('GMAIL_EMAIL', 'some@gmail.com');
define('GMAIL_PASSWORD', '*********');
define('ATTACHMENTS_DIR', dirname(__FILE__) . '/attachments');

$mailbox = new ImapMailbox('{imap.gmail.com:993/imap/ssl}INBOX', GMAIL_EMAIL, GMAIL_PASSWORD, ATTACHMENTS_DIR, 'utf-8');
$mails = array();

// Get some mail
$mailsIds = $mailbox->searchMailBox('ALL');
if(!$mailsIds) {
	die('Mailbox is empty');
}

$mailId = reset($mailsIds);
$mail = $mailbox->getMail($mailId);

var_dump($mail);
var_dump($mail->getAttachments());

Recommended

About

PHP class to access mailbox by POP3/IMAP/NNTP using IMAP extension

License:GNU Lesser General Public License v3.0


Languages

Language:PHP 100.0%