PHPackages                             adamibrahim/email\_confirm - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. adamibrahim/email\_confirm

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

adamibrahim/email\_confirm
==========================

Laravel 5.6 Natively Email confirmation Package

v0.2.1(8y ago)136MITPHPPHP ~5.6|~7.0

Since Feb 15Pushed 8y agoCompare

[ Source](https://github.com/adamibrahim/email_confirm)[ Packagist](https://packagist.org/packages/adamibrahim/email_confirm)[ Docs](https://github.com/adamibrahim/email_confirm)[ RSS](/packages/adamibrahim-email-confirm/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (3)Versions (21)Used By (0)

Laravel 5.6 Email confirmation
==============================

[](#laravel-56-email-confirmation)

[![Latest Version on Packagist](https://camo.githubusercontent.com/e47b5fd9742cd16674bc5afeaa5b2f8bbeaffeefff552eff13cdeb1468536d2b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f3a76656e646f722f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/adamibrahim/email_confirm)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/cb11179311e640818ab161382ab46616c3056e3374c94f90fdc6d06a309cf73b/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f3a76656e646f722f3a7061636b6167655f6e616d652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/:vendor/:package_name)[![Coverage Status](https://camo.githubusercontent.com/77bd9748066a4737af2be4a15b71865967905bfc6aa38aabed0996acb7fb2bbb/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f3a76656e646f722f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/:vendor/:package_name/code-structure)[![Quality Score](https://camo.githubusercontent.com/5ea237d9c7d6af5499007b76e317965f8bdfa4596fd71c22cd7fe2cb818594cc/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f3a76656e646f722f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/:vendor/:package_name)[![Total Downloads](https://camo.githubusercontent.com/2e7d96ffc3c5f08e269c45f38de91ce489968312df30848d817105c5ada0d9cc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f3a76656e646f722f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/adamibrahim/email_confirm)

Laravel 5.6 Natively Email confirmation Package Using Queue to send Emails

Demo
----

[](#demo)

You can see working [demo](https://www.emailconfirm.hostato.com)

Install
-------

[](#install)

##### Laravel fresh installation

[](#laravel-fresh-installation)

```
$ laravel new yourappname
```

##### Create / configure .env file

[](#create--configure-env-file)

- database access
- QUEUE\_DRIVER=database
- Email configuration

##### Install the package Via Composer

[](#install-the-package-via-composer)

```
$ composer require adamibrahim/email_confirm
```

###### If you installing at laravel 5.5 or higher then you may go directly to Publish other wise you will need to edit composer.json and register the Service Provider

[](#if-you-installing-at-laravel-55-or-higher-then-you-may-go-directly-to-publish-other-wise-you-will-need-to-edit-composerjson-and-register-the-service-provider)

##### composer.json

[](#composerjson)

Add this code to your composer.json under the autoload at your main directory

```
"psr-4": {
            "Adam\\EmailConfirm\\": "vendor/adamibrahim/email_confirm/src"
        }
```

##### Service Provider

[](#service-provider)

At file config/app.php register service provider under \* Package Service Providers...

```
Adam\EmailConfirm\EmailConfirmServiceProvider::class,
```

##### Publishing

[](#publishing)

###### This will overwrite your User.php model

[](#this-will-overwrite-your-userphp-model)

```
$ php artisan vendor:publish --tag=emailConfirm --force
```

##### Database Migrating

[](#database-migrating)

run the Artisan migration command

```
$ php artisan migrate
```

##### Job Queues

[](#job-queues)

I'm Using Queues to send emails (speed up the app) however if you don't wish to use it you can change at your .env file

```
QUEUE_DRIVER=sync

```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE\_OF\_CONDUCT](CODE_OF_CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email :author\_email instead of using the issue tracker.

Credits
-------

[](#credits)

- [Hostato](http://wwww.hostato.com)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

20

Last Release

3002d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4f504cb40ae3721c41864e01cbc6742fef3dbed740e3f2672a003f6193d8dd6d?d=identicon)[adamibrahim](/maintainers/adamibrahim)

---

Top Contributors

[![hostato](https://avatars.githubusercontent.com/u/34839078?v=4)](https://github.com/hostato "hostato (21 commits)")

---

Tags

packageEmail confirmlaravel55

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/adamibrahim-email-confirm/health.svg)

```
[![Health](https://phpackages.com/badges/adamibrahim-email-confirm/health.svg)](https://phpackages.com/packages/adamibrahim-email-confirm)
```

###  Alternatives

[lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users.

2.3k16.4M48](/packages/lab404-laravel-impersonate)[lab404/laravel-auth-checker

Laravel Auth Checker allows you to log users authentication, devices authenticated from and lock intrusions.

223164.9k2](/packages/lab404-laravel-auth-checker)[ellaisys/aws-cognito

AWS Cognito package that allows Auth and other related features using the AWS SDK for PHP

120220.7k1](/packages/ellaisys-aws-cognito)[rickycezar/laravel-jwt-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users.

24117.6k](/packages/rickycezar-laravel-jwt-impersonate)[vertisan/oauth2-twitch-helix

Twitch (new version Helix) OAuth 2.0 Client Provider for The PHP League OAuth2-Client

1367.4k3](/packages/vertisan-oauth2-twitch-helix)[j4k/oauth2-vkontakte

Vkontakte provider for league/oauth2-client

1252.8k1](/packages/j4k-oauth2-vkontakte)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
