skmetaly / laravel-smtp-email-verifier by skmetaly

Laravel SMTP Email Validator
10,995
18
3
Package Data
Maintainer Username: skmetaly
Maintainer Contact: contact@seblaze.com (Paul Bele)
Package Create Date: 2015-03-20
Package Last Update: 2019-02-08
Language: PHP
License: MIT
Last Refreshed: 2024-11-19 03:13:39
Package Statistics
Total Downloads: 10,995
Monthly Downloads: 16
Daily Downloads: 1
Total Stars: 18
Total Watchers: 3
Total Forks: 10
Total Open Issues: 5

laravel-smtp-email-verifier

Laravel SMTP Email verifier. Simple email verifier for Laravel that tries to check with SMTP server if the given email addresses exists or not

Installation

Require the package in composer.json :

"skmetaly/laravel-smtp-email-verifier": "dev-master"

In config/app.php add providers

'Skmetaly\EmailVerifier\EmailVerifierServiceProvider'

In aliases

'EmailVerifier'=>'Skmetaly\EmailVerifier\Facades\EmailVerifier'

Publish the config

php artisan vendor:publish --tag=email-verifier

If you want the test command, register it in app/Console/Kernel

'Skmetaly\EmailVerifier\Commands\TestEmailValidator'

Usage

####Test command

php artisan tem:email <email-address>

####Email Validator Currently you can ue EmaiLValidator with a string as an email address or an array containing email addresses

EmailVerifier::verify('foo@bar');

Will return true if the validator was able to connect and to validate the email address

EmailVerifier::verify(['foo@bar','baz@bar','baz@foo');

Will return an array with all the validated email addresses

Current status

Alpha

Licence

MIT