Laravel Teams Notification

Laravel Teams Notification stats

Downloads
22.5K
Stars
12
Open Issues
1
Forks
2

View on GitHub →

A Laravel package to send notifications to Microsoft Teams

Laravel Teams Notification

Laravel Teams Notification is a package for sending notifications to Microsoft Teams using the "Post to a channel when a webhook request is received" workflow webhook. It supports sending normal messages, exception messages with trace, and messages with additional details or JSON blocks, following the JSON structure required by Microsoft Teams adaptive cards. The package also includes custom logging functionality for Laravel, making it easy to integrate with your existing Laravel applications and log important events directly to Microsoft Teams channels.

Image 2

Table of Contents

Features

  • Send Normal Messages: Send simple text notifications to Teams.
  • Send Messages with Additional Details: Include extra details in the notification.
  • Send Success Messages: Highlight successful operations with a green color.
  • Send Warning Messages: Indicate warnings with an orange color.
  • Send Error Messages: Report errors with a red color and optional stack trace.
  • Send Messages with JSON Blocks: Include formatted JSON data in the message.
  • Custom Logging: Log messages directly to Microsoft Teams using Laravel’s logging system.
  • Configurable Message Colors: Set custom colors for messages with predefined options.

Installation

To install the package, you need PHP 7.0 or higher and Laravel 5.5 or later. Use Composer:

composer require osa-eg/laravel-teams-notification

Then, add your Microsoft Teams webhook URL to your .env file:

TEAMS_WEBHOOK_URL=your_teams_webhook_url

Publishing Files

Config

To publish the config file included with this package to your Laravel project, run:

php artisan vendor:publish --tag=laravel-teams-notification-config

Usage

Sending a Normal Message

To send a normal message, use the sendMessage method:

use Osama\LaravelTeamsNotification\TeamsNotification;
 
$notification = new TeamsNotification();
$message = "System Notification";
$notification->sendMessage($message);

Sending a Normal Message with Additional Details and Color

To send a normal message with additional details, use the sendMessage method with the second parameter:

use Osama\LaravelTeamsNotification\TeamsNotification;
 
$notification = new TeamsNotification();
$message = "System Notification";
$details = [
'Server' => 'Production',
'Status' => 'Running',
'Uptime' => '24 days'
];
$notification->sendMessage($message, $details);

Sending a Success Message

To send a success message, use the success method:

use Osama\LaravelTeamsNotification\TeamsNotification;
 
$notification = new TeamsNotification();
$message = "Operation completed successfully!";
$details = [
'Duration' => '2 seconds',
'Processed Items' => '150'
];
$notification->success()->sendMessage($message, $details);

Sending a Warning Message

To send a warning message, use the warning method:

use Osama\LaravelTeamsNotification\TeamsNotification;
 
$notification = new TeamsNotification();
$message = "Warning: High Memory Usage Detected";
$details = [
'Memory Usage' => '95%',
'Server' => 'Production'
];
$notification->warning()->sendMessage($message, $details);

Sending an Error Message with Trace and Default Attention Color

To send an error message with trace, use the error method and bindTrace method:

use Osama\LaravelTeamsNotification\TeamsNotification;
 
try {
// Code that may throw an exception
} catch (\Exception $exception) {
$notification = new TeamsNotification();
$notification->bindTrace()->error()->sendException($exception);
}

Sending a Message with Array as JSON Block and Custom Color

To send a message with an array as a JSON block, use the sendJsonMessage method:

use Osama\LaravelTeamsNotification\TeamsNotification;
 
$notification = new TeamsNotification();
$message = "Data Update";
$data = [
'user_id' => 12345,
'action' => 'update',
'status' => 'success',
'timestamp' => date('Y-m-d H:i:s')
];
$notification->success()->sendJsonMessage($message, $data);

Custom Logging

The package also supports custom logging to Microsoft Teams. To set up custom logging, follow these steps:

  1. Configure Logging in Your Laravel Project:

    In config/logging.php, add the following configuration:

    'channels' => [
    // Other channels...
     
    'teams' => [
    'driver' => 'custom',
    'via' => \Osama\LaravelTeamsNotification\Logging\TeamsLoggingChannel::class,
    'webhook_url' => env('TEAMS_WEBHOOK_URL'),
    ],
  2. Use the Custom Log Channel:

    To log messages to Teams, use the teams log channel:

    Log::channel('teams')->info('This is an info message');
    Log::channel('teams')->error('This is an error message');

Methods

  • setColor(string $color): Sets the color of the message. Valid colors are "default", "dark", "light", "accent", "good", "warning", "attention".
  • success(): Sets the message color to "good".
  • warning(): Sets the message color to "warning".
  • error(): Sets the message color to "attention".
  • sendMessage($message, array $details = []): Sends a normal message with additional details.
  • sendException(\Exception $exception): Sends an exception message with optional trace details.
  • bindTrace(): Includes the trace in the exception message.
  • sendJsonMessage($message, array $data): Sends a message with an array as a JSON block.

Learn More

For a detailed guide on integrating Microsoft Teams notifications with your Laravel application, check out my Medium article:

Streamlining Laravel Notifications with Microsoft Teams Workflow Integration

License

This package is open-sourced software licensed under the MIT license.

 
This README now includes a Table of Contents section that links to different parts of the document for easier navigation.
Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.


Osa Eg Laravel Teams Notification Related Articles

Laravel 9.12 Released image

Laravel 9.12 Released

Read article
Handling Signals in Laravel Console Commands image

Handling Signals in Laravel Console Commands

Read article
Your Code is Broken. Sentry Can Fix It. (sponsor) image

Your Code is Broken. Sentry Can Fix It. (sponsor)

Read article
Your Code is Broken. Sentry Can Fix It.  (Sponsor) image

Your Code is Broken. Sentry Can Fix It. (Sponsor)

Read article
Securing Laravel logo

Securing Laravel

The essential security resource for Laravel devs, covering everything you need to keep your apps secure. Sign up to receive weekly security tips and monthly in depth articles, diving deep into security concepts you need to know!

Securing Laravel
Acquaint Softtech logo

Acquaint Softtech

Acquaint Softtech offers AI-ready Laravel developers who onboard in 48 hours at $3000/Month with no lengthy sales process and a 100 percent money-back guarantee.

Acquaint Softtech
Tighten logo

Tighten

We help companies turn great ideas into amazing apps, products, and services.

Tighten
The Certification of Competence for Laravel logo

The Certification of Competence for Laravel

A community-driven, proctored assessment across 4 levels designed to validate real-world Laravel knowledge, from Junior to mastery-level Artisan. Official Vue.js, Official Nuxt, Angular, React, JS certifications also available.

The Certification of Competence for Laravel
Laravel Cloud logo

Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Cloud
PhpStorm logo

PhpStorm

The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

PhpStorm