Skip to content

Instantly share code, notes, and snippets.

View sagistrauss's full-sized avatar

Sagi Strauss sagistrauss

View GitHub Profile
@sagistrauss
sagistrauss / Post Mixpanel events to Slack
Last active February 12, 2020 08:21
Create a Mixpanel webhook to any event and get notified in slack. Replace with your own token. Was built as part of https://findthat.email marketing automation.
<?php
$event = json_decode($_POST, true)
public static function slack($message, $channel)
{
$ch = curl_init("https://slack.com/api/chat.postMessage");
$data = http_build_query([
"token" => "xoxp-20602861126-50564294628-131570927717-71f35607470b529281bb4cb779318048",
"general" => $channel,