An open API service indexing awesome lists of open source software.

https://github.com/asboldyrev/apprise-notification-sdk


https://github.com/asboldyrev/apprise-notification-sdk

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Current support

- Telegram
- Email
- 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();

```