Skip to content

Instantly share code, notes, and snippets.

View khanof89's full-sized avatar
🎯
Focusing

Shahrukh Khan khanof89

🎯
Focusing
View GitHub Profile
@khanof89
khanof89 / slack.php
Created November 23, 2017 10:29 — forked from stefanzweifel/slack.php
Slack.com Webhook Integration (PHP) - Simple snippet which tells you, how to build your payload array.
<?php
//Options
$token = 'YOUR_TOKEN_HERE';
$domain = 'YOUR_SLACK_DOMAIN_GOES_HERE';
$channel = '#general';
$bot_name = 'Webhook';
$icon = ':alien:';
$message = 'Your message';