php-extended/php-email-address-parser-object

This package is abandoned and no longer maintained. The author suggests using the php-extended/php-email-address-object package instead.

A library that implements the php-extended/php-email-address-parser-interface interface library.

4.0.16 2021-06-25 18:14 UTC

This package is auto-updated.

Last update: 2021-06-27 09:41:23 UTC


README

A library that implements the php-extended/php-email-address-parser-interface interface library.

coverage build status

Installation

The installation of this library is made via composer. Download composer.phar from their website. Then add to your composer.json :

	"require": {
		...
		"php-extended/php-email-address-parser-object": "^4"
		...
	}

Then run php composer.phar update to install this library. The autoloading of all classes of this library is made through composer's autoloader.

Basic Usage

To parse email addresses, you may do the following :


use PhpExtended\Email\EmailAddressParser;

$parser = new EmailAddressParser();
$email = $parser->parse('email@example.com');
// $email instanceof \PhpExtended\Email\EmailAddress

or, for headers of requests :


use PhpExtended\Email\MailboxGroupListParser;

$parser = new MailboxGroupListParser();
$list = $parser->parse('Group: Toto toto@example.com; Group2: toto2@example.com, "Tata \"" tata@example.com');
// $list instanceof \PhpExtended\Email\MailboxGroupList

echo $list->collectEmailAddresses();
// echo "toto@example.com, toto2@example.com, tata@example.com"

Test data

This library was tested against the following data sets:

If you can find other data sets to test against, just file an issue and i will try to test this library against it.

License

MIT (See license file).