petnovcz/imap

Simple IMAP wrapper - with events

1.2.2 2016-09-10 14:13 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:18:33 UTC


README

Simple IMAP wrapper.

Downloads total Latest stable

Discussion / Help

Join the chat at https://gitter.im/Markette/Gopay

Install

$ composer require petnov/imap:~1.1.0

Usage

use Minetro\Imap\ImapReader;

$reader = new ImapReader('{yourdomain.cz:143/imap}INBOX', $username, $password);
$emails = $reader->read(ImapReader::CRITERIA_UNSEEN);

// Iterate all emails
foreach ($emails as $email) {
    
    // Iterate all email parts
    for ($i = 0; $i < $email->countBodies(); $i++) {
        
        // Get text (encode with right encoding..)
        $text = $email->getBodySectionText($i);
        
        echo $text;
    }
}