PHPackages                             smichaelsen/noti - 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. smichaelsen/noti

ActiveTypo3-cms-extension[Mail &amp; Notifications](/categories/mail)

smichaelsen/noti
================

0.3.0(9y ago)538.5k[2 issues](https://github.com/smichaelsen/typo3-noti/issues)PHP

Since Oct 6Pushed 1y ago1 watchersCompare

[ Source](https://github.com/smichaelsen/typo3-noti)[ Packagist](https://packagist.org/packages/smichaelsen/noti)[ RSS](/packages/smichaelsen-noti/feed)WikiDiscussions main Synced yesterday

READMEChangelog (1)Dependencies (1)Versions (17)Used By (0)

Noti
====

[](#noti)

Your TYPO3 notification API
---------------------------

[](#your-typo3-notification-api)

Sending an email notification for a certain event is very common requirement for extension developers and of course it's not that hard. Using the TYPO3 `MailMessage` class you'll be done in a few minutes.

But wait.. the client wants to configure the recipient mail addresses? Don't rack your brain where to put the configuration. Use Noti!

What does it do?
----------------

[](#what-does-it-do)

Using noti an extension can trigger an event like "A new user registered", "we received a new product rating", "the daily data import went wrong".

In the TYPO3 backend you can create subscription records for those events.

[![Backend form screenshot](/Documentation/Screenshots/example_backend_form.png?raw=true)](/Documentation/Screenshots/example_backend_form.png?raw=true)

Right now there are two notification types available:

### Email Notification

[](#email-notification)

Let's you configure a list of mail addresses that receive a notification when the event is triggered.

### Slack Notification

[](#slack-notification)

Sends a message to our favorite chat app when the event is triggered.

How do I implement it in my extension?
--------------------------------------

[](#how-do-i-implement-it-in-my-extension)

In your `ext_localconf.php` register your event:

```
\Smichaelsen\Noti\EventRegistry::registerEvent(
    (new \Smichaelsen\Noti\Domain\Model\Event('myUniqueEventIdentifier', $_EXTKEY))
        ->setTitle('New user registered') // LLL reference is possible and recommended here
        ->addPlaceholder('userName', 'The user name') // This will appear in the backend to show the available placeholders to the user
);

```

Then in your code trigger the event like this:

```
EventRegistry::triggerEvent(
    'myUniqueEventIdentifier',
    [
        'userName' => $newUser->getUsername(),
    ]
);

```

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance22

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

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

Total

5

Last Release

3522d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/886face3e57e668db2bf95d62325f423baf7e9d8949a9e4c84d3a0e6c3891920?d=identicon)[smichaelsen](/maintainers/smichaelsen)

---

Top Contributors

[![smichaelsen](https://avatars.githubusercontent.com/u/912435?v=4)](https://github.com/smichaelsen "smichaelsen (16 commits)")

### Embed Badge

![Health badge](/badges/smichaelsen-noti/health.svg)

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

###  Alternatives

[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

103519.9k45](/packages/friendsoftypo3-content-blocks)[netresearch/rte-ckeditor-image

Image support in CKEditor for the TYPO3 ecosystem - by Netresearch

611.1M7](/packages/netresearch-rte-ckeditor-image)[plan2net/webp

Drop-in WebP, AVIF, and JPEG XL delivery for TYPO3 images — automatic, no URL or template changes

681.5M5](/packages/plan2net-webp)[wazum/sluggi

TYPO3 extension for URL slug management with inline editing, auto-sync, locking, access control, and redirects

40529.5k](/packages/wazum-sluggi)[b13/assetcollector

Asset collector - Add CSS and SVG files and strings as inline style tag/inline svg to the html code.

10123.2k](/packages/b13-assetcollector)[mediaessenz/mail

Powerful newsletter system for TYPO3

1110.4k3](/packages/mediaessenz-mail)

PHPackages © 2026

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