First version
This commit is contained in:
25
src/Ntfy/Ntfy.php
Normal file
25
src/Ntfy/Ntfy.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
namespace App\Ntfy;
|
||||
|
||||
class Ntfy {
|
||||
private $domain;
|
||||
function __construct($domain)
|
||||
{
|
||||
$this->domain = $domain;
|
||||
}
|
||||
|
||||
function send($topic,$title, $message)
|
||||
{
|
||||
file_get_contents('https://'.$this->domain.'/'.$topic, false, stream_context_create([
|
||||
'http' => [
|
||||
'method' => 'POST',
|
||||
'header' => 'Content-Type: text/plain',
|
||||
'header' =>
|
||||
"Content-Type: text/plain\r\n" .
|
||||
"Title: $title\r\n",
|
||||
'content' => $message
|
||||
]
|
||||
]));
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user