https://github.com/asboldyrev/apprise-notification-sdk
https://github.com/asboldyrev/apprise-notification-sdk
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/asboldyrev/apprise-notification-sdk
- Owner: asboldyrev
- License: mit
- Created: 2023-06-24T15:54:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-24T16:31:46.000Z (almost 2 years ago)
- Last Synced: 2025-02-12T00:39:00.723Z (4 months ago)
- Language: PHP
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Current support
- Telegram
- Home Assistant# Install
```shell
composer require asboldyrev/apprise-notification-sdk
```# Sample
```php
addEmail('[email protected]', 'Patrick');$result = $client
->setContent(new Content('test message', 'title'))
->hassio(new Hassio('ha.server.com', 'access_token'))
->email($email)
->telegram('token_bot', 'chat_id')
->send();
```