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

ActiveLibrary

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 1mo ago

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 10% 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

783d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a5cfd436d215436d33c50f3568559e19f7c93e4f653cfac776b4dbaa098cc03f?d=identicon)[yevheniigrabar](/maintainers/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

[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[shaffe/laravel-mail-log-channel

A package to support logging via email in Laravel

1286.2k](/packages/shaffe-laravel-mail-log-channel)[evanschleret/lara-mjml

Just a service provider for Spatie's MJML wrapper

1722.0k](/packages/evanschleret-lara-mjml)[reachweb/statamic-livewire-filters

Livewire filters for Statamic collections.

1710.5k](/packages/reachweb-statamic-livewire-filters)[tomshaw/electricgrid

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

116.6k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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