PHP code example of rumd3x / slack-notifier
1. Go to this page and download the library: Download rumd3x/slack-notifier 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/ */
rumd3x / slack-notifier example snippets
$slack = new Rumd3x\Slack\Notifier('SLACK-API-KEY');
$notification = new Rumd3x\Slack\Notification('message text', 'channel', 'api-user');
// Optional - Add attachments
$attachment1 = new Rumd3x\Slack\Attachment('attachment text');
$attachment1->withColor(Rumd3x\Slack\Attachment::COLOR_DEFAULT); // Optional
$attachment1->withFooter('footnote'); // Optional
// Optionally add fields to your attachments
$attachment1 = new Rumd3x\Slack\Field('type_short_or_full', 'field_title', 'description_optional');
$attachment1->addField($attachment1);
$notification->attach($attachment1);
$slack->notify($notification);