PHPackages                             mblsolutions/paypoint-sendgrid-notification - 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. mblsolutions/paypoint-sendgrid-notification

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

mblsolutions/paypoint-sendgrid-notification
===========================================

PayPoint Sendgrid Notification package

v1.0.2(8mo ago)0374↓50%proprietaryPHPPHP ^8.1|8.2|8.3|8.4CI passing

Since Aug 27Pushed 8mo agoCompare

[ Source](https://github.com/mblsolutions/paypoint-sendgrid-notification)[ Packagist](https://packagist.org/packages/mblsolutions/paypoint-sendgrid-notification)[ RSS](/packages/mblsolutions-paypoint-sendgrid-notification/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (13)Versions (8)Used By (0)

PayPoint Sendgrid Notification
==============================

[](#paypoint-sendgrid-notification)

PayPoint sendgrid notification package

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

[](#installation)

The recommended method to install LaravelRepository is with composer

```
php composer require mblsolutions/paypoint-sendgrid-notification
```

### Laravel without auto-discovery

[](#laravel-without-auto-discovery)

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

```
\MBLSolutions\SendgridNotification\SendgridNotificationServiceProvider::class,
```

### Package configuration

[](#package-configuration)

```
Copy the package configuration to your local config directory.
```

```
php artisan vendor:publish --tag=sendgrid-notification-config
```

### Database Driver

[](#database-driver)

If you would like to use the Database driver to store your notification logs, you will first need to create and run the database driver migration.

```
php artisan paypoint-sendgrid-notification:database:table
```

This will create a new migration in `database/migrations`, after creating this migration run the database migrations to create the new table.

```
php artisan migrate
```

Usage
-----

[](#usage)

The configuration and setup can be adjusted in the notification config file located in `config/notification.php`. We recommend reading through the config file before enabling notification to ensure you have the optimum setup.

### Enable Notification Service

[](#enable-notification-service)

In environment setting, you need to change MAIL\_MAILER from smtp to sendgrid to enable the service. The credentials is neede to add in your .env file.

```
MAIL_MAILER=sendgrid
SENDGRID_DSN=sendgrid+api://[SECRET_KEY]@default
#mblsolutions will be sat by default if .env is not sat in the below
SENDGRID_EMAIL_IDENTIFIER=mblsolutions
```

In mail setting, you need to add sendgrid in mailer.

```
'mailers' => [
    //... other mailer
    'sendgrid' => [
        'transport' => 'sendgrid',
        'dsn' => env('SENDGRID_DSN'),
    ],
]
```

### Enable user information for logging in job

[](#enable-user-information-for-logging-in-job)

If you would like to have user information in notification logs, you need to set user in authentication as in the example below:

```
class SendEmail extends Notification implements ShouldQueue
{
    use HasAuthUser; //This trait is used to assign the auth user

    public function __construct()
    {
        $this->initAuthUser(); //needs to init $authUser
    }

    public function toMail($notifiable): SendgridMailMessage
    {
        //constructor MailMessage with $authUser
        return (new SendgridMailMessage(($this->authUser)));
    }
}
```

License
-------

[](#license)

Notification is free software distributed under the terms of the MIT license.

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance60

Regular maintenance activity

Popularity18

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity58

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 ~4 days

Total

3

Last Release

255d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/610936?v=4)[Christian Innerbichler](/maintainers/lerouse)[@lerouse](https://github.com/lerouse)

---

Top Contributors

[![chun-yu-tang](https://avatars.githubusercontent.com/u/173277897?v=4)](https://github.com/chun-yu-tang "chun-yu-tang (16 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/mblsolutions-paypoint-sendgrid-notification/health.svg)

```
[![Health](https://phpackages.com/badges/mblsolutions-paypoint-sendgrid-notification/health.svg)](https://phpackages.com/packages/mblsolutions-paypoint-sendgrid-notification)
```

###  Alternatives

[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[s-ichikawa/laravel-sendgrid-driver

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

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[dyrynda/laravel-model-uuid

This package allows you to easily work with UUIDs in your Laravel models.

4802.8M8](/packages/dyrynda-laravel-model-uuid)

PHPackages © 2026

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