Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/vitaliy-orlov/whmcs-slack-notif


https://github.com/vitaliy-orlov/whmcs-slack-notif

notifications php slack whmcs

Last synced: 20 days ago
JSON representation

Awesome Lists containing this project

README

        

# whmcs-slack-notif

WHMCS hook for ticket open and reply from owner. Also it send push notification into Slack channel

# Installation

Copy needed PHP file into WHMCS directory ```$WHMC_ROOT/includes/hooks```.

# Setting

Each PHP file contations function ```get_options```. You have to fill it with your private data.

Example:
```
function get_options() {
return array(
'url' => 'https://slack.com/api/chat.postMessage',
'channel_tickets' => '000000000',
'token' => 'xxxx-xxxxxxxxx-xxxx',
'admin_user' => 'admin',
'whmcs_host' => 'http://mywhmcs.com/'
);
}
```