1. Go to this page and download the library: Download ssch/t3-notifier library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Symfony\Component\Notifier\NotifierInterface;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
use Symfony\Component\Notifier\Notification\Notification;
final class SomeController extends ActionController
{
public function __construct(private readonly NotifierInterface $notifier) {}
public function someAction() {
$notification = (new Notification('New Notification'))
->content('You got a new notification.')
->importance(Notification::IMPORTANCE_HIGH);
$this->notifier->send($notification, new Recipient('[email protected]'));
}
}
use Ssch\T3Notifier\Logger\Writer\NotifierWriter;
use Symfony\Component\Notifier\Recipient\Recipient;
use TYPO3\CMS\Core\Log\LogLevel;
$GLOBALS['TYPO3_CONF_VARS']['LOG']['Examples']['writerConfiguration'] = [
LogLevel::ERROR => [
NotifierWriter::class => [
// Optional configuration
'channels' => ['chat/slack']
'recipients' => [new Recipient('[email protected]', '123455678')],
],
],
];
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.