yarri / email-address-recognizer
Parses email addresses from the To: or Cc: header in a message.
v0.1.3
2023-01-03 11:57 UTC
Requires
- php: >=5.6.0
- atk14/dictionary: 1.*
- atk14/forms: ~1.0 >=1.0.1
- atk14/translate: ^1.2
Requires (Dev)
- atk14/tester: *
This package is auto-updated.
Last update: 2024-11-19 13:40:10 UTC
README
Parses email addresses from the To: or Cc: header in a message.
Usage
$ear = new Yarri\EmailAddressRecognizer("john@doe.com, Samatha Doe <samatha@doe.com>");
$addresses = $ear->toArray();
sizeof($addresses); // how many addresses are there?
$ear->isValid(); // are all the addresses valid or not?
$addresses[0]->isValid(); // true
echo $addresses[0]->getAddress(); // "john@doe.com"
echo $addresses[0]->getName(); // ""
echo $addresses[0]->getFullAddress(); // "john@doe.com"
echo $addresses[0]->getDomain(); // "doe.com"
echo $addresses[0]->getGroup(); // ""
$addresses[1]->isValid(); // true
echo $addresses[1]->getAddress(); // "samatha@doe.com"
echo $addresses[1]->getName(); // "Samatha Doe"
echo $addresses[1]->getFullAddress(); // "Samatha Doe <samatha@doe.com>"
echo $addresses[1]->getDomain(); // "doe.com"
echo $addresses[1]->getGroup(); // ""
Installation
Just use the Composer:
composer require yarri/email-address-recognizer
Testing
Install required dependencies for development:
composer update --dev
Run tests:
cd test
../vendor/bin/run_unit_tests
License
EmailAddressRecognizer is free software distributed under the terms of the MIT license