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(10mo ago)02.7k↑170.5%proprietaryPHPPHP ^8.1|8.2|8.3|8.4CI passing

Since Aug 27Pushed 10mo 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 2d 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 84% of packages

Maintenance55

Moderate activity, may be stable

Popularity23

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity59

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

302d 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

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M131](/packages/roots-acorn)[flarum/core

Delightfully simple forum software.

201.4M2.3k](/packages/flarum-core)[craftcms/cms

Craft CMS

3.6k3.6M3.1k](/packages/craftcms-cms)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

45444.2k1](/packages/pressbooks-pressbooks)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M200](/packages/laravel-ai)

PHPackages © 2026

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