BrighterTools.Messaging 1.0.1

dotnet add package BrighterTools.Messaging --version 1.0.1
                    
NuGet\Install-Package BrighterTools.Messaging -Version 1.0.1
                    
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="BrighterTools.Messaging" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BrighterTools.Messaging" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="BrighterTools.Messaging" />
                    
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 BrighterTools.Messaging --version 1.0.1
                    
#r "nuget: BrighterTools.Messaging, 1.0.1"
                    
#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 BrighterTools.Messaging@1.0.1
                    
#: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=BrighterTools.Messaging&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=BrighterTools.Messaging&version=1.0.1
                    
Install as a Cake Tool

BrighterTools.Messaging

BrighterTools.Messaging is the transport-agnostic core for queued email and SMS delivery.

This package provides:

  • messaging abstractions for stores and dispatch
  • template rendering
  • notification queue orchestration
  • email and SMS test-mode handling

This package does not register a transport implementation by itself. Register one or more companion transport packages explicitly:

  • BrighterTools.Messaging.MailKit
  • BrighterTools.Messaging.Postmark
  • BrighterTools.Messaging.Twilio

Package

dotnet add package BrighterTools.Messaging

Minimal Registration

services.AddBrighterToolsMessaging(configuration);
services.AddBrighterToolsPostmarkEmailSender(configuration);
services.AddBrighterToolsTwilioSmsSender(configuration);

services.AddScoped<INotificationMessageStore, MyNotificationMessageStore>();
services.AddScoped<ISystemEmailTemplateStore, MySystemEmailTemplateStore>();
services.AddScoped<IEmailTemplateStore, MyEmailTemplateStore>();
services.AddScoped<INotificationDispatcher, MyNotificationDispatcher>();
services.AddScoped<INotificationAttachmentStore, MyNotificationAttachmentStore>();
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 (4)

Showing the top 4 NuGet packages that depend on BrighterTools.Messaging:

Package Downloads
BrighterTools.Messaging.Postmark

Postmark email transport for BrighterTools.Messaging.

BrighterTools.Messaging.Twilio

Twilio SMS transport for BrighterTools.Messaging.

BrighterTools.Messaging.SendGrid

SendGrid email transport for BrighterTools.Messaging.

BrighterTools.Messaging.MailKit

MailKit SMTP transport for BrighterTools.Messaging.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 139 7/15/2026

v1.0.1 - React package scope and publishing updates

Included:
- Prepared the React companion package for scoped npm publishing as @brightertools/messaging-react.
- Aligned NuGet and npm publishing metadata for the 1.0.1 patch release.

Breaking changes:
- None.