tdhungit/php-jemails

There is no license information available for the latest version (1.0.0) of this package.

Read Email

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/tdhungit/php-jemails

1.0.0 2019-03-08 08:19 UTC

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);