moiseevigor / php-mime-mail-parser

Fully Tested Mailparse Extension Wrapper for PHP 5.3+

Home Page:http://vincent.dauce.fr

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php-mime-mail-parser

Fully Tested Mailparse Extension Wrapper for PHP 5.3+

Latest Stable Version Total Downloads Latest Unstable Version License

Maintainer: Visit my blog Vincent Dauce.

Is it reliable ?

Yes, it is.
All the issues are reproduced, fixed and tested.

Build Status Coverage Status

How to install ?

Easy way with Composer ;)

To install this library, run the command below and you will get the latest version

composer require exorus/php-mime-mail-parser

Requirements

The following versions of PHP are supported by this version.

  • PHP 5.3
  • PHP 5.4
  • PHP 5.5
  • PHP 5.6
  • HHVM

Make sure you have the mailparse extension (http://php.net/manual/en/book.mailparse.php) properly installed : pecl install mailparse And imap functions with : apt-get install php5-imap

How to use it ?

<?php
//We need to add the library first !
require_once __DIR__.'/vendor/autoload.php';

$path = 'path/to/mail.txt';
$Parser = new eXorus\PhpMimeMailParser\Parser();

//There are three input methods of the mime mail to be parsed
//specify a file path to the mime mail :
$Parser->setPath($path); 

// Or specify a php file resource (stream) to the mime mail :
$Parser->setStream(fopen($path, "r"));

// Or specify the raw mime mail text :
$Parser->setText(file_get_contents($path));

// We can get all the necessary data
$to = $Parser->getHeader('to');
$from = $Parser->getHeader('from');
$subject = $Parser->getHeader('subject');

$text = $Parser->getMessageBody('text');
$html = $Parser->getMessageBody('html');
$htmlEmbedded = $Parser->getMessageBody('htmlEmbedded'); //HTML Body included data

// and the attachments also
$attach_dir = '/path/to/save/attachments/';
$Parser->saveAttachments($attach_dir);

?>

Contributing ?

Feel free to contribute.
To add issue, please provide the raw email with it.

License

The exorus/php-mime-mail-parser is open-sourced software licensed under the MIT license

About

Fully Tested Mailparse Extension Wrapper for PHP 5.3+

http://vincent.dauce.fr


Languages

Language:PHP 100.0%