PHPackages                             yevheniigrabar/user-registration-notifier - 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. yevheniigrabar/user-registration-notifier

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

yevheniigrabar/user-registration-notifier
=========================================

A Composer package for sending welcome emails upon user registration in Laravel

1.0(2y ago)04MITPHP

Since Mar 19Pushed 2y ago1 watchersCompare

[ Source](https://github.com/yevheniiGrabar/LaravelPackage)[ Packagist](https://packagist.org/packages/yevheniigrabar/user-registration-notifier)[ RSS](/packages/yevheniigrabar-user-registration-notifier/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

User Registration Notifier
==========================

[](#user-registration-notifier)

User Registration Notifier is a Composer package for sending welcome emails upon user registration in a Laravel application.

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

[](#installation)

You can install this package via Composer. Run the following command in your terminal:

```
composer require yevheniigrabar/user-registration-notifier
```

Setup
-----

[](#setup)

Register the Event Listener After installing the package, you need to register the UserRegistered event listener in your Laravel application. Open the `EventServiceProvider.php` file located in the `app/Providers` directory of your Laravel project and add the following code to the $listen array:

```
// app/Providers/EventServiceProvider.php

protected $listen = [
    \App\Events\UserRegistered::class => [
        \Yevheniigrabar\UserRegistrationNotifier\Listener::class,
    ],
];
```

Ensure UserRegistered Event
---------------------------

[](#ensure-userregistered-event)

Make sure you have the `UserRegistered` event set up in your Laravel application. If not, you'll need to create it. Here's an example of how you can define the event:

```
// app/Events/UserRegistered.php

namespace App\Events;

use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
use App\Models\User;

class UserRegistered
{
    use Dispatchable, SerializesModels;

    public $user;

    public function __construct(User $user)
    {
        $this->user = $user;
    }
}
```

Ensure Email Templates
----------------------

[](#ensure-email-templates)

Ensure you have email templates set up for sending the welcome email. You can create your email template or use Laravel's default notification system.

Usage
-----

[](#usage)

Once you have registered the event listener and ensured the UserRegistered event, your package is set up to send welcome emails upon user registration automatically.

License
-------

[](#license)

User Registration Notifier is open-sourced software licensed under the MIT license.

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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

Unknown

Total

1

Last Release

835d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/76519760?v=4)[Yevhenii](/maintainers/yevheniigrabar)[@yevheniiGrabar](https://github.com/yevheniiGrabar)

---

Top Contributors

[![yevheniiGrabar](https://avatars.githubusercontent.com/u/76519760?v=4)](https://github.com/yevheniiGrabar "yevheniiGrabar (2 commits)")

### Embed Badge

![Health badge](/badges/yevheniigrabar-user-registration-notifier/health.svg)

```
[![Health](https://phpackages.com/badges/yevheniigrabar-user-registration-notifier/health.svg)](https://phpackages.com/packages/yevheniigrabar-user-registration-notifier)
```

###  Alternatives

[illuminate/notifications

The Illuminate Notifications package.

513.1M1.1k](/packages/illuminate-notifications)[propaganistas/laravel-disposable-email

Disposable email validator

6023.0M7](/packages/propaganistas-laravel-disposable-email)[eduardokum/laravel-mail-auto-embed

Library for embed images in emails automatically

1712.2M10](/packages/eduardokum-laravel-mail-auto-embed)[illuminate/mail

The Illuminate Mail package.

5910.6M499](/packages/illuminate-mail)[api-platform/laravel

API Platform support for Laravel

58170.8k13](/packages/api-platform-laravel)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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