skmetaly / laravel-smtp-email-verifier
Laravel SMTP Email Validator
Installs: 10 996
Dependents: 0
Suggesters: 0
Security: 0
Stars: 18
Watchers: 3
Forks: 10
Open Issues: 5
Requires
- clue/socket-raw: ^1.2
This package is auto-updated.
Last update: 2024-11-08 22:47:16 UTC
README
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