mattermost-notifier

Symfony Mattermost Notifier Bridge

MIT License

Downloads
55.6K
Stars
8
Committers
16

Mattermost Notifier

Provides Mattermost integration for Symfony Notifier.

DSN example

MATTERMOST_DSN=mattermost://ACCESS_TOKEN@HOST/PATH?channel=CHANNEL_ID

where:

  • ACCESS_TOKEN is your Mattermost access token
  • HOST is your Mattermost host
  • PATH is your Mattermost sub-path (optional)
  • CHANNEL_ID is your Mattermost default channel id

Usage

// to post to another channel
$options = new MattermostOptions();
$options->recipient('{channel_id}');

$message = (new ChatMessage($text))->options($options);

$chatter->send($message);

Resources