Overview
The Magento 2 Slack Notifier module sends logger exceptions automatically to a specified Slack channel. This integration helps you stay updated with critical issues in your Magento store by sending real-time notifications directly to your Slack workspace.
Features
Installation
Using Composer
Navigate to your Magento 2 root directory.
Require the module using Composer:
composer require magify/magento2-module-slacknotifier
Enable the module:
php bin/magento module:enable Magify_SlackNotifier
Run the setup upgrade command:
php bin/magento setup:upgrade
Configuration
In the Magento admin panel, navigate to Stores > Configuration > Advanced > Developer > Slack Notifier.
Configure the following settings:
Usage
Once configured, the module will automatically send log exceptions of the specified types to your Slack channel. You can monitor these notifications to quickly respond to issues in your Magento store.
Custom Message Service
Overview
The custom message service allows developers to send any message to a specified Slack channel, with the option to choose between asynchronous or synchronous sending.
Note
If the channel and token are not set in the function parameters, the service will use the values configured in the Magento admin panel.
Usage
Here is an example of how to use the custom message service in your Magento 2 module:
1 - Inject the CustomMessage in your class:
customMessage = $customMessage; parent::__construct($context); } public function execute() { $title= "This is a test title"; $message = "This is a test message"; $async = false; // or true based on your requirement $channel = "your-channel-id"; $token = "your-token"; $this->customMessage->notifyMessage($title, $message, $async, $channel, $token); } }
2 - Call the notifyMessage method with your title, message, channel ID, token and sending type (async/sync).
Support
For support and feature requests, please open an issue on the GitHub repository.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3