Soenneker.Resend.Client
4.0.294
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Resend.Client --version 4.0.294
NuGet\Install-Package Soenneker.Resend.Client -Version 4.0.294
<PackageReference Include="Soenneker.Resend.Client" Version="4.0.294" />
<PackageVersion Include="Soenneker.Resend.Client" Version="4.0.294" />
<PackageReference Include="Soenneker.Resend.Client" />
paket add Soenneker.Resend.Client --version 4.0.294
#r "nuget: Soenneker.Resend.Client, 4.0.294"
#:package Soenneker.Resend.Client@4.0.294
#addin nuget:?package=Soenneker.Resend.Client&version=4.0.294
#tool nuget:?package=Soenneker.Resend.Client&version=4.0.294
Soenneker.Resend.Client
Provides a cached HttpClient for sending and receiving email and managing Resend domains, contacts, audiences, broadcasts, templates, topics, and API keys.
Installation
dotnet add package Soenneker.Resend.Client
Configuration
{
"Resend": {
"ApiKey": "re_xxxxxxxxx"
}
}
Usage
using Soenneker.Resend.Client.Abstract;
using Soenneker.Resend.Client.Registrars;
services.AddResendHttpClientAsSingleton();
public sealed class ResendDomainReader
{
private readonly IResendHttpClient _resend;
public ResendDomainReader(IResendHttpClient resend)
{
_resend = resend;
}
public async Task<string> GetDomains(CancellationToken cancellationToken)
{
HttpClient client = await _resend.Get(cancellationToken);
return await client.GetStringAsync("domains", cancellationToken);
}
}
The provider sends Authorization: Bearer <api-key> and the User-Agent header required by Resend. It targets https://api.resend.com/ by default. Set Resend:ClientBaseUrl for a proxy or compatible endpoint, or Resend:UserAgent when your application needs a specific user-agent value.
| 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.Extensions.Configuration (>= 4.0.889)
- Soenneker.Utils.HttpClientCache (>= 4.0.2078)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.Resend.Client:
| Package | Downloads |
|---|---|
|
Soenneker.Resend.ClientUtil
Provides a lazily initialized, authenticated Resend API client. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.296 | 41 | 9/13/2026 |
| 4.0.295 | 45 | 9/13/2026 |
| 4.0.294 | 38 | 9/13/2026 |
| 4.0.293 | 39 | 9/13/2026 |
| 4.0.292 | 56 | 9/13/2026 |
| 4.0.291 | 75 | 9/12/2026 |
| 4.0.290 | 71 | 9/12/2026 |
| 4.0.289 | 40 | 9/12/2026 |
| 4.0.287 | 153 | 9/9/2026 |
| 4.0.286 | 102 | 9/9/2026 |
| 4.0.285 | 121 | 9/8/2026 |
| 4.0.284 | 192 | 9/8/2026 |
| 4.0.283 | 90 | 9/8/2026 |
| 4.0.282 | 162 | 9/7/2026 |
| 4.0.281 | 96 | 9/7/2026 |
| 4.0.280 | 161 | 9/7/2026 |
| 4.0.279 | 243 | 9/5/2026 |
| 4.0.278 | 95 | 9/5/2026 |
| 4.0.277 | 181 | 9/4/2026 |
| 4.0.276 | 205 | 9/4/2026 |
Update dependency Soenneker.Utils.HttpClientCache to 4.0.2078 (#598)