Skip to content

Adds Laravel 5 validation rule for checking e-mail addresses using the mailboxlayer API

License

Notifications You must be signed in to change notification settings

bagf/mailboxlayer-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mailboxlayer-laravel

Adds Laravel 5 validation rule for checking e-mail addresses using the mailboxlayer API

Installation

composer require bagf/mailboxlayer-laravel

Add this service provider to your Laravel 5 app providers array in config/app.php

        Bagf\Mailboxlayer\ServiceProvider::class,

Add these configuration values to config/services.php

    'mailboxlayer' => [
        'https' => true,
        'access_key' => env('MAILBOXLAYER'),
    ],

You can then set your access key in the .env file

MAILBOXLAYER="KEY_GOES_HERE"

Add these two translations to your validation language file in resources/lang/en/validation.php

    'mailboxlayer'         => 'The :attribute is not valid. :suggestion',
    'mailboxlayer_suggest'  => 'Did you mean :email?',

About

Adds Laravel 5 validation rule for checking e-mail addresses using the mailboxlayer API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages