forked from extern/egroupware
12 lines
229 B
PHP
12 lines
229 B
PHP
|
<?php
|
||
|
$notification = new notification();
|
||
|
$notification->set_message($body);
|
||
|
$notification->set_receivers(array($userid));
|
||
|
try {
|
||
|
$notification->send();
|
||
|
}
|
||
|
catch(Exception $exception) {
|
||
|
error_log($exception->getMessage());
|
||
|
}
|
||
|
?>
|