tdhungit/php-jemails

该包的最新版本(1.0.0)没有可用的许可信息。

读取邮件

1.0.0 2019-03-08 08:19 UTC

This package is auto-updated.

Last update: 2024-09-08 22:23:45 UTC


README

读取邮件

使用composer安装

composer require tdhungit/php-jemails

配置

edit imap mail in src/Config/Config.php

使用方法

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