laravel-smtp-email-verifier
laravel-smtp-email-verifier copied to clipboard
Laravel SMTP Email Validator. Simple email validator for laravel that tries to check with SMTP server if the given email addresses exists or not
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