Niobium.Platform.Notification 4.0.42

There is a newer version of this package available.
See the version list below for details.
dotnet add package Niobium.Platform.Notification --version 4.0.42
                    
NuGet\Install-Package Niobium.Platform.Notification -Version 4.0.42
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Niobium.Platform.Notification" Version="4.0.42" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Niobium.Platform.Notification" Version="4.0.42" />
                    
Directory.Packages.props
<PackageReference Include="Niobium.Platform.Notification" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Niobium.Platform.Notification --version 4.0.42
                    
#r "nuget: Niobium.Platform.Notification, 4.0.42"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Niobium.Platform.Notification@4.0.42
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Niobium.Platform.Notification&version=4.0.42
                    
Install as a Cake Addin
#tool nuget:?package=Niobium.Platform.Notification&version=4.0.42
                    
Install as a Cake Tool

Niobium.Platform.Notification

Niobium.Platform.Notification provides a unified abstraction and infrastructure for sending notifications (email, SMS, push, etc.) in .NET applications. It supports multiple notification channels, templates, and providers, enabling scalable and extensible notification workflows for business and platform scenarios.

What is this project about?

  • Defines interfaces and base types for notification channels and services (email, SMS, push, etc.).
  • Implements channel repositories, notification context, and template management.
  • Provides integration with providers like SendGrid for email and supports SMS and push notifications.
  • Includes a DI dependency module for easy registration and extension.
  • Used by Niobium.* and consumer projects to standardize and extend notification delivery.

Getting Started

1. Install the NuGet Package

Add the package to your .NET project:

dotnet add package Niobium.Platform.Notification

2. Register Notification Services

In your DI setup, use the provided dependency module:

using Niobium.Platform.Notification;
using Microsoft.Extensions.DependencyInjection;

var services = new ServiceCollection();
services.AddCodPlatformNotification(options =>
{
    // Configure notification options, e.g., default channels, providers, etc.
});

3. Use Notification Services

  • Send Notification:
    var notificationService = serviceProvider.GetRequiredService<INotificationService>();
    await notificationService.SendAsync(
        channel: "Email", // or "SMS", "Push"
        parameters: new NotificationParameters { /* ... */ },
        cancellationToken);
    
  • Custom Channels: Implement INotificationChannel for custom notification logic and register it via DI.

4. Email, SMS, and Push Integration

  • Email: Use built-in SendGrid integration or extend with your own provider.
  • SMS: Use SMSNotificationChannel and related types for SMS delivery.
  • Push: Use PushNotificationChannel for push notification scenarios.

How Niobium.Platform.Notification is Consumed

Consumer projects (e.g., Niobium.Invoicing.Core) use Niobium.Platform.Notification to:

  • Register and use notification services and channels via DI.
  • Send transactional and workflow notifications across multiple channels.
  • Extend notification logic with custom channels and templates.

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes with clear commit messages
  4. Submit a pull request

Please ensure your code follows the existing style and includes appropriate tests and documentation.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Niobium.Platform.Notification:

Package Downloads
Niobium.Platform.Notification.Firebase

Firebase Cloud Messaging push channel for .NET notification apps.

Niobium.Platform.Notification.Apple

Apple push notification channel for .NET notification apps.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.2.66 99 9/4/2026
4.0.60 109 8/30/2026
4.0.53 101 8/27/2026
4.0.48 106 8/9/2026
4.0.42 135 7/18/2026
4.0.37 129 7/17/2026
4.0.35 133 7/17/2026
4.0.34 124 7/17/2026
4.0.33 122 7/16/2026
4.0.32 134 7/2/2026
3.4.30 240 12/22/2025
3.4.29 336 11/11/2025
3.4.28 218 11/2/2025
3.4.27 179 11/1/2025
3.4.26 174 11/1/2025
3.4.25 184 11/1/2025
3.4.24 217 10/31/2025
3.2.23 158 10/18/2025
3.2.22 201 10/17/2025
3.2.21 196 10/17/2025
Loading failed