tdhungit / php-jemails
Read Email
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/tdhungit/php-jemails
Requires
- php: >=5.4.0
- ext-imap: *
This package is auto-updated.
Last update: 2025-11-09 01:09:11 UTC
README
Read Email
Install from composer
composer require tdhungit/php-jemails
Config
edit imap mail in src/Config/Config.php
Use
require __DIR__ . '/../vendor/autoload.php';
$emailReader = new PHPJEmails\Libraries\Emails\Email_reader();
$result = $emailReader->byDate('2019-03-06', '2019-03-08');
$emailReader->close();
header("Content-Type: text/plain");
print_r($result);