PHPackages                             funnydevjsc/laravel-email-filter - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. funnydevjsc/laravel-email-filter

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

funnydevjsc/laravel-email-filter
================================

Laravel package to filter bad email

1.1.7(4mo ago)9104↓100%4MITPHPPHP ^8.1|^8.2|^8.3|^8.4

Since Sep 10Pushed 4mo agoCompare

[ Source](https://github.com/funnydevjsc/laravel-email-filter)[ Packagist](https://packagist.org/packages/funnydevjsc/laravel-email-filter)[ Docs](https://github.com/funnydevjsc/laravel-email-filter)[ RSS](/packages/funnydevjsc-laravel-email-filter/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (19)Used By (0)

Email Filter Laravel
====================

[](#email-filter-laravel)

The free Laravel package to help you filter your users email with multiple services

Use Cases
---------

[](#use-cases)

- Perform a powerful checking for user email before approving registration or invoice making.
- Parse result from validator
- Example use case

Features
--------

[](#features)

- Check blacklist from poste.io, site24x7.com
- Check quality from maxmind.com, apivoid.com, ipqualityscore.com
- Easy to validate with a simple line code

Requirements
------------

[](#requirements)

- **PHP**: 8.1 or higher
- **Laravel** 9.0 or higher

Quick Start
-----------

[](#quick-start)

If you prefer to install this package into your own Laravel application, please follow the installation steps below

Installation
------------

[](#installation)

#### Step 1. Install a Laravel project if you don't have one already

[](#step-1-install-a-laravel-project-if-you-dont-have-one-already)

#### Step 2. Require the current package using composer:

[](#step-2-require-the-current-package-using-composer)

```
composer require funnydevjsc/laravel-email-filter
```

#### Step 3. Publish the controller file and config file

[](#step-3-publish-the-controller-file-and-config-file)

```
php artisan vendor:publish --provider="FunnyDev\EmailFilter\EmailFilterServiceProvider" --tag="email-filter"
```

If publishing files fails, please create corresponding files at the path `config/email-filter.php` and `app\Http\Controllers\EmailFilterControllers.php` from this package. And you can also further customize the EmailFilterControllers.php file to suit your project.

#### Step 4. Update the various config settings in the published config file:

[](#step-4-update-the-various-config-settings-in-the-published-config-file)

After publishing the package assets a configuration file will be located at `config/email-filter.php`.

Testing
-------

[](#testing)

```
