参考链接

使用 pecl 安装

1
pecl install mailparse

手动安装

示例

1
2
3
4
5
6
7
8
9
10
11
12
<?php

require_once __DIR__ . '/../vendor/autoload.php';

$path = __DIR__ . '/xxx.eml';
$parser = new PhpMimeMailParser\Parser();

$parser->setPath($path);
$parser->setStream(fopen($path, "r"));

$html = $parser->getMessageBody('html');
var_dump($html);