PHPackages                             phynix/notify - 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. phynix/notify

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

phynix/notify
=============

Notification Package

0400PHP

Since Feb 28Pushed 2y ago1 watchersCompare

[ Source](https://github.com/PhynixMedia/notify-package)[ Packagist](https://packagist.org/packages/phynix/notify)[ RSS](/packages/phynix-notify/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

NOTIFICATION MODULE
-------------------

[](#notification-module)

### SEND NOTIFICATIONS AS EMAIL, SMS OR FCM

[](#send-notifications-as-email-sms-or-fcm)

> Credentials are required so also there are some dependencies not included in this package. Please, also not that this is not a complete application and quite alont of more packages injection into this.

> Sending Email: requires:

```
$to    = "david_chris@yahoo.com";
$subject = "Hello Testing Email Sender";
$message = "Testing Email Sender for application for the system we are sending for the library";
(new EmailService())->run($to, $subject, $message);

```

> Sending Instant Email: requires:

```
$to    = "david_chris@yahoo.com";
$subject = "Hello Testing Email Sender";
$message = "Testing Email Sender for application for the system we are sending for the library";
(new EmailService())->runInstant($to, $subject, $message);

```

> Sending SMS requires:

```
$to    = "+447930152290";
$sms   = "Testing the new system for the applications Testing Email Sender for application for the system we are sending for the library Sender for application for the system we are sending for the library";
(new SmsService())->run($to, $sms);
(new SmsService())->runInstant($to, $sms);

```

> Sending FCM requires:

```
$receiver    = "-CkWgJ8jsAxoM";
$message = "Testing Email Sender for application for the system we are sending for the library";
(new FcmService())->run($receiver, $message);

```

> running cron job

```
Registering in Kernel:

Under Commands:

protected $commands = [
    'Notify\App\Command\SmsSender',
    'Notify\App\Command\EmailSender',
    'Notify\App\Command\FcmSender',
];

protected function schedule(Schedule $schedule)
{
    $schedule->command('notify:sms')->everyMinute();
    $schedule->command('notify:email')->everyMinute();
    $schedule->command('notify:fcm')->everyMinute();
}

```

```
.ENV keys:

PHYNIX_EMAIL_SENDER="Company Ltd"
PHYNIX_EMAIL_API=https://fault/US-Ea
PHYNIX_SMS_API=https://wnj0nvhmyClo
PHYNIX_FCM_SENDER_ID=AAAA1Sr-UqPOjqB5gazX9I8b
PHYNIX_SEND_COUNTER=10
PHYNIX_SENDER_CODE=CompanyL

```

> Run migrations

```

php artisan migrate --path=/vendor/phynix/notify/src/database/migrations/2022_06_23_140303_create_log_emails_table.php
php artisan migrate --path=/vendor/phynix/notify/src/database/migrations/2022_06_23_140433_create_log_fcm_table.php
php artisan migrate --path=/vendor/phynix/notify/src/database/migrations/2022_06_23_140433_create_log_sms_table.php

```

###  Health Score

16

—

LowBetter than 4% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity19

Early-stage or recently created project

 Bus Factor1

Top contributor holds 91.7% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/fb3a25e4f229615be51e2cea2a473a8766d70d9ff7d00b0e6a2c6cc3d83e11bb?d=identicon)[david4real](/maintainers/david4real)

---

Top Contributors

[![ODAdebayo](https://avatars.githubusercontent.com/u/58173405?v=4)](https://github.com/ODAdebayo "ODAdebayo (11 commits)")[![PhynixMedia](https://avatars.githubusercontent.com/u/66735797?v=4)](https://github.com/PhynixMedia "PhynixMedia (1 commits)")

### Embed Badge

![Health badge](/badges/phynix-notify/health.svg)

```
[![Health](https://phpackages.com/badges/phynix-notify/health.svg)](https://phpackages.com/packages/phynix-notify)
```

###  Alternatives

[maize-tech/laravel-email-domain-rule

Laravel Email Domain Rule

612.0k](/packages/maize-tech-laravel-email-domain-rule)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

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