MailStencil.AzureBlob
0.1.0-preview.1
dotnet add package MailStencil.AzureBlob --version 0.1.0-preview.1
NuGet\Install-Package MailStencil.AzureBlob -Version 0.1.0-preview.1
<PackageReference Include="MailStencil.AzureBlob" Version="0.1.0-preview.1" />
<PackageVersion Include="MailStencil.AzureBlob" Version="0.1.0-preview.1" />
<PackageReference Include="MailStencil.AzureBlob" />
paket add MailStencil.AzureBlob --version 0.1.0-preview.1
#r "nuget: MailStencil.AzureBlob, 0.1.0-preview.1"
#:package MailStencil.AzureBlob@0.1.0-preview.1
#addin nuget:?package=MailStencil.AzureBlob&version=0.1.0-preview.1&prerelease
#tool nuget:?package=MailStencil.AzureBlob&version=0.1.0-preview.1&prerelease
Azure Blob template reader
The application supplies a BlobServiceClient; MailStencil never constructs credentials, creates
containers, or writes blobs. Each exact template variant is one bounded, versioned JSON document.
services.AddSingleton(blobServiceClient);
services.AddMailStencil().AddScribanRenderer()
.AddAzureBlobTemplateReader(o =>
{
o.ContainerName = "email-templates";
o.Prefix = "mailstencil";
});
The blob path is <prefix>/<name>/<culture-or-default>/template.json. The JSON object contains
formatVersion, subject, optional htmlBody, and optional textBody. Only Azure's exact
BlobNotFound condition returns null; authentication, authorization, throttling, container absence,
network, and other service failures remain Azure SDK exceptions.
See the MailStencil repository for the JSON format, localization behavior, security limits, and Azurite test instructions.
| Product | Versions 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. |
-
net10.0
- Azure.Storage.Blobs (>= 12.29.2)
- MailStencil.Core (>= 0.1.0-preview.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.0-preview.1 | 0 | 9/10/2026 |
First public preview candidate of MailStencil's read-only runtime, renderer, and storage providers.