Soenneker.Resend.ClientUtil
4.0.350
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Resend.ClientUtil --version 4.0.350
NuGet\Install-Package Soenneker.Resend.ClientUtil -Version 4.0.350
<PackageReference Include="Soenneker.Resend.ClientUtil" Version="4.0.350" />
<PackageVersion Include="Soenneker.Resend.ClientUtil" Version="4.0.350" />
<PackageReference Include="Soenneker.Resend.ClientUtil" />
paket add Soenneker.Resend.ClientUtil --version 4.0.350
#r "nuget: Soenneker.Resend.ClientUtil, 4.0.350"
#:package Soenneker.Resend.ClientUtil@4.0.350
#addin nuget:?package=Soenneker.Resend.ClientUtil&version=4.0.350
#tool nuget:?package=Soenneker.Resend.ClientUtil&version=4.0.350
Soenneker.Resend.ClientUtil
Provides a lazily initialized Resend client for email, domains, contacts, audiences, broadcasts, templates, topics, events, logs, webhooks, and API keys.
Installation
dotnet add package Soenneker.Resend.ClientUtil
Configuration
{
"Resend": {
"ApiKey": "re_xxxxxxxxx"
}
}
Usage
using Soenneker.Resend.ClientUtil.Abstract;
using Soenneker.Resend.ClientUtil.Registrars;
services.AddResendClientUtilAsSingleton();
public sealed class ResendDomainReader
{
private readonly IResendClientUtil _resend;
public ResendDomainReader(IResendClientUtil resend)
{
_resend = resend;
}
public async Task GetDomains(CancellationToken cancellationToken)
{
var client = await _resend.Get(cancellationToken);
var domains = await client.Domains.GetAsync(
cancellationToken: cancellationToken);
}
}
The underlying provider sends the bearer API key and the User-Agent header required by Resend. Use AddResendClientUtilAsScoped() when each scope should have its own lazily initialized API client; both registrations reuse the singleton authenticated HTTP client provider.
| 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
- Soenneker.Resend.Client (>= 4.0.287)
- Soenneker.Resend.OpenApiClient (>= 4.0.138)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.Resend.ClientUtil:
| Package | Downloads |
|---|---|
|
Soenneker.Resend.Emails
Sends, batches, retrieves, and cancels scheduled email through Resend. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.364 | 45 | 9/17/2026 |
| 4.0.363 | 35 | 9/17/2026 |
| 4.0.362 | 36 | 9/16/2026 |
| 4.0.360 | 64 | 9/16/2026 |
| 4.0.359 | 45 | 9/16/2026 |
| 4.0.358 | 36 | 9/16/2026 |
| 4.0.357 | 40 | 9/15/2026 |
| 4.0.356 | 226 | 9/13/2026 |
| 4.0.355 | 100 | 9/13/2026 |
| 4.0.354 | 82 | 9/13/2026 |
| 4.0.353 | 124 | 9/13/2026 |
| 4.0.352 | 147 | 9/13/2026 |
| 4.0.351 | 117 | 9/12/2026 |
| 4.0.350 | 118 | 9/12/2026 |
| 4.0.348 | 205 | 9/11/2026 |
| 4.0.346 | 141 | 9/9/2026 |
| 4.0.345 | 167 | 9/8/2026 |
| 4.0.344 | 146 | 9/8/2026 |
| 4.0.343 | 141 | 9/8/2026 |
| 4.0.342 | 92 | 9/8/2026 |
Use NuGet trusted publishing in publishing workflows