PHPackages                             submtd/email-confirmation - 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. submtd/email-confirmation

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

submtd/email-confirmation
=========================

Add email confirmation to Laravel users

1.0.7(8y ago)1191MITPHPPHP &gt;=5.4.0

Since Jan 11Pushed 8y ago1 watchersCompare

[ Source](https://github.com/submtd/email-confirmation)[ Packagist](https://packagist.org/packages/submtd/email-confirmation)[ RSS](/packages/submtd-email-confirmation/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (14)Used By (0)

Email Confirmation for Laravel
==============================

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

This package enables email confirmation for users in your Laravel app. This email confirmation package requires no changes to core laravel files or your user model.

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

[](#installation)

Begin by pulling in the package through Composer.

```
composer require submtd/email-confirmation
```

Next, if you are using Laravel 5.4, you will need to include the service providers in your `config/app.php` file. If you are using Laravel 5.5, these will be discovered automatically.

```
'providers' => [
    Submtd\EmailConfirmation\Providers\EmailConfirmationServiceProvider::class,
    Submtd\EmailConfirmation\Providers\EmailConfirmationListeners::class,
];
```

Next, you will need to run the migrations in order to add the `confirmed` and `confirmation_token` columns to your users table.

```
php artisan migrate
```

Finally, in order to see the status messages generated by this package, you will need to add the following code to your applications main blade template file.

```
@if(session('status'))

        {{ session('status') }}

@endif
```

Configuration
-------------

[](#configuration)

If you would like to edit the configuration, you must run the following artisan command to copy the config file and the views to your app directory.

```
php artisan vendor:publish --provider="Submtd\EmailConfirmation\Providers\EmailConfirmationServiceProvider"
```

After running this command, the status messages can be found in `config/email-confirmation.php` and the email template can be found in `resources/views/vendor/email-confirmation/ConfirmEmail.blade.php`.

If you would like to only publish the config or the views or the migrations, use the `--tag` option on the artisan command.

```
php artisan vendor:publish --provider="Submtd\EmailConfirmation\Providers\EmailConfirmationServiceProvider" --tag=config
php artisan vendor:publish --provider="Submtd\EmailConfirmation\Providers\EmailConfirmationServiceProvider" --tag=migrations
php artisan vendor:publish --provider="Submtd\EmailConfirmation\Providers\EmailConfirmationServiceProvider" --tag=views
```

Donation
--------

[](#donation)

If this project helped you save some development time, feel free to buy me a beer ;)

[![paypal](https://camo.githubusercontent.com/e1ff554a09e8e92bef25abc553ff05b88f45afd695877cf12f3a46558ef65b2e/68747470733a2f2f7777772e70617970616c6f626a656374732e636f6d2f656e5f55532f692f62746e2f62746e5f646f6e61746543435f4c472e676966)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=G72FZ5PYP6EZU)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity65

Established project with proven stability

 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

13

Last Release

3040d ago

Major Versions

0.2.2 → 1.02018-01-11

### Community

Maintainers

![](https://www.gravatar.com/avatar/3f2ec485b862557409bdcfdc47aae18b204e6ee01395abb8113cb30c40c30e59?d=identicon)[submtd](/maintainers/submtd)

---

Top Contributors

[![submtd](https://avatars.githubusercontent.com/u/2303288?v=4)](https://github.com/submtd "submtd (37 commits)")

### Embed Badge

![Health badge](/badges/submtd-email-confirmation/health.svg)

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

###  Alternatives

[namshi/jose

JSON Object Signing and Encryption library for PHP.

1.8k99.6M101](/packages/namshi-jose)[league/oauth1-client

OAuth 1.0 Client Library

99698.8M106](/packages/league-oauth1-client)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[gesdinet/jwt-refresh-token-bundle

Implements a refresh token system over Json Web Tokens in Symfony

70516.4M35](/packages/gesdinet-jwt-refresh-token-bundle)[league/oauth2-google

Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client

41721.2M118](/packages/league-oauth2-google)[illuminate/auth

The Illuminate Auth package.

9327.3M1.0k](/packages/illuminate-auth)

PHPackages © 2026

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