PHP Classes

File: config/active-email.php

Recommend this page to a friend!
  Packages of Victor John Ukam   Laravel Active Email   config/active-email.php   Download  
File: config/active-email.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Laravel Active Email
Validate email to reject disposable addresses
Author: By
Last change:
Date: 2 months ago
Size: 2,018 bytes
 

Contents

Class file image Download
<?php

return [

   
/*
    |--------------------------------------------------------------------------
    | Strict Mode
    |--------------------------------------------------------------------------
    |
    | This value determines the strictness level of this feature.
    |
    */

   
'strict_mode' => env('DISPOSABLE_EMAIL_STRICT_MODE', true),

   
/*
    |--------------------------------------------------------------------------
    | Black List
    |--------------------------------------------------------------------------
    |
    | This is a list of base domains with or without the TLD that are
    | blacklisted by default. Add a domain to this list to blacklist it.
    |
    */

   
'blacklist' => [
       
//
   
],

   
/*
    |--------------------------------------------------------------------------
    | Grey List
    |--------------------------------------------------------------------------
    |
    | This is a list of base domains with or without the TLD that aren't
    | blacklisted by default except when in strict mode. Add a domain to this
    | list to whitelist it when the feature is not set to strict mode.
    | Ensure that the domain is not on the blacklist above.
    |
    */

   
'greylist' => [
       
//
   
],

   
/*
    |--------------------------------------------------------------------------
    | White List
    |--------------------------------------------------------------------------
    |
    | This is a list of base domains with or without the TLD that are
    | blacklisted by default but you want them to be bye passed.
    |
    */

   
'whitelist' => [
       
//
   
],

   
/*
    |--------------------------------------------------------------------------
    | Validation Message
    |--------------------------------------------------------------------------
    |
    | This is the message that is displayed when an email fails validation.
    | Leave as is to use the package's default message.
    |
    */

   
'error_message' => '',

];