PHPackages                             ironbound/wp-notifications - 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. ironbound/wp-notifications

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

ironbound/wp-notifications
==========================

Drop in framework for sending notifications in WordPress.

v1.0.1(10y ago)43062MITPHPPHP &gt;=5.3.0

Since Oct 5Pushed 7y ago1 watchersCompare

[ Source](https://github.com/iron-bound-designs/wp-notifications)[ Packagist](https://packagist.org/packages/ironbound/wp-notifications)[ RSS](/packages/ironbound-wp-notifications/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)DependenciesVersions (3)Used By (0)

WP Notifications
================

[](#wp-notifications)

WP Notifications is a drop in framework for sending notifications with WordPress. It supports multiple sending strategies and batch processing via queues.

Basic Usage
-----------

[](#basic-usage)

WP Notifications is easy, and straightforward to use.

### Sending a single notification

[](#sending-a-single-notification)

```
$recipient = wp_get_current_user();
$manager = Factory::make( 'your-notification' );
$message = "Hey {first_name}, how's it going?";
$subject = "Hey!"

$notification = new Notification( $recipient, $manager, $message, $subject );
$notification->set_strategy( new WP_Mail() )->send();
```

### Sending multiple notifications

[](#sending-multiple-notifications)

```
$queue = new WP_Cron( new Options_Storage( 'your-project-name' ) );
$queue->process( $notifications, new WP_Mail() );
```

### Setting up template tag listeners

[](#setting-up-template-tag-listeners)

```
add_action( 'ibd_wp_notifications_template_manager_your-notification', function( Manager $manager ) {
    // a template tag of {first_name} will be automatically replaced
    // with the recipient's first name when sending.
    $manager->add_listener( new Listener( 'first_name', function( WP_User $recipient ) {
        return $recipient->first_name;
    } ) );
} );
```

Supports
--------

[](#supports)

Strategies

- WP\_Mail
- iThemes Exchange
- Easy Digital Downloads
- Mandrill

Queues

- WP\_Cron
- Mandrill

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

[](#installation)

First, add WP Notifications as a dependency with [Composer](http://getcomposer.org):

```
composer require ironbound/wp-notifications
```

Then, make sure your bootstrap file is loading the composer autoloader:

```
require_once 'vendor/autoload.php';
```

License
-------

[](#license)

MIT

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 97.4% 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 ~0 days

Total

2

Last Release

3925d ago

### Community

Maintainers

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

---

Top Contributors

[![TimothyBJacobs](https://avatars.githubusercontent.com/u/3460448?v=4)](https://github.com/TimothyBJacobs "TimothyBJacobs (38 commits)")[![kjohnson](https://avatars.githubusercontent.com/u/10858303?v=4)](https://github.com/kjohnson "kjohnson (1 commits)")

### Embed Badge

![Health badge](/badges/ironbound-wp-notifications/health.svg)

```
[![Health](https://phpackages.com/badges/ironbound-wp-notifications/health.svg)](https://phpackages.com/packages/ironbound-wp-notifications)
```

###  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)
