PHP code example of osyou84 / slack-notification

1. Go to this page and download the library: Download osyou84/slack-notification library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

osyou84 / slack-notification example snippets


$sn = new SlackNotification;
$sn->targetWorkspace()
   ->send('メッセージ', 'WEBHOOK URL');

$sn = new SlackNotification;
$sn->targetChannelAll()
   ->send('メッセージ', 'WEBHOOK URL');

$sn = new SlackNotification;
$sn->targetActive()
   ->send('メッセージ', 'WEBHOOK URL');

$sn = new SlackNotification;
$sn->setTargets(['USER_ID1', 'USER_ID2', '...'])
   ->send('メッセージ', 'WEBHOOK URL');

 $ php example/example.php