Skip to content

Instantly share code, notes, and snippets.

View JesseMcL's full-sized avatar

Jesse McLachlan JesseMcL

  • Ingenuity
  • Sydney
View GitHub Profile
@JesseMcL
JesseMcL / slack.php
Last active September 19, 2017 11:59 — forked from stefanzweifel/slack.php
Slack.com Webhook Integration (PHP) - Simple snippet which tells you, how to build your payload array.
#!/usr/bin/php
<?php
//Options
$url = 'https://hooks.slack.com/services/...';
$zabbix_url = 'http://zabbix.../zabbix/';
$bot_name = 'Zabbix';
$icon = ':alien:';
if ($argc != 4) {
print $argv[0]." Usage: channel subject json\n";