There is no license information available for the latest version (0.3.0) of this package.

Installs: 24 741

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 2

Forks: 0

Open Issues: 2

Type:typo3-cms-extension

0.3.0 2016-11-08 10:38 UTC

README

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?

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

Right now there are two notification types available:

Email Notification

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

Slack Notification

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

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(),
    ]
);