Answers for "send notification php to PC"

PHP
0

send notification php to PC

use Joli\JoliNotif\Notification;

if ($notifier) {
    $notification =
        (new Notification())
        ->setBody('The notification body')
        ->setTitle('The notification title')
        ->setIcon(__DIR__.'/Resources/icons/success.png');
    ;

    $notifier->send($notification);
}
Posted by: Guest on June-04-2020

Code answers related to "send notification php to PC"

Browse Popular Code Answers by Language