PHP code example of komujohn / google-chat-notifier
1. Go to this page and download the library: Download komujohn/google-chat-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/ */
komujohn / google-chat-notifier example snippets
namespace App\Service;
use Symfony\Component\Notifier\Bridge\GoogleChat\ThreadNotification;
use Symfony\Component\Notifier\Notification\Notification;
use Symfony\Component\Notifier\NotifierInterface;
use Symfony\Component\Notifier\Recipient\NoRecipient;
class NotificationHelper {
private NotifierInterface $notifier;
public function __construct( NotifierInterface $notifier ) {
$this->notifier = $notifier;
}
public function sendNotification($subject,$message,$thread_key='general5'){
$notification = (new ThreadNotification())
->subject($subject)
->content($message)
->thread($thread_key)
->importance(Notification::IMPORTANCE_HIGH);
$this->notifier->send($notification, new NoRecipient());
}
}