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 2mo ago

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 75% of packages

Maintenance24

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

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

[directmailteam/direct-mail

Advanced Direct Mail/Newsletter mailer system with sophisticated options for personalization of emails including response statistics.

39209.3k2](/packages/directmailteam-direct-mail)[in2code/luxletter

Free newsletter extension for TYPO3 for an individual email marketing. A lot of analytics and modern concepts. Works with and without EXT:lux.

2572.3k2](/packages/in2code-luxletter)[sup7even/mailchimp

Simple MailChimp integration to let users register to a specific list

1531.9k](/packages/sup7even-mailchimp)[mediaessenz/mail

Powerful newsletter system for TYPO3

119.1k2](/packages/mediaessenz-mail)

PHPackages © 2026

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