tdhungit/php-jemails

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

Read Email

Maintainers

Package info

github.com/tdhungit/php-jemails

pkg:composer/tdhungit/php-jemails

Statistics

Installs: 3

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2019-03-08 08:19 UTC

This package is auto-updated.

Last update: 2026-03-09 01:49:52 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);