Soenneker.Resend.Client
4.0.279
Prefix Reserved
dotnet add package Soenneker.Resend.Client --version 4.0.279
NuGet\Install-Package Soenneker.Resend.Client -Version 4.0.279
<PackageReference Include="Soenneker.Resend.Client" Version="4.0.279" />
<PackageVersion Include="Soenneker.Resend.Client" Version="4.0.279" />
<PackageReference Include="Soenneker.Resend.Client" />
paket add Soenneker.Resend.Client --version 4.0.279
#r "nuget: Soenneker.Resend.Client, 4.0.279"
#:package Soenneker.Resend.Client@4.0.279
#addin nuget:?package=Soenneker.Resend.Client&version=4.0.279
#tool nuget:?package=Soenneker.Resend.Client&version=4.0.279
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.875)
- Soenneker.Utils.HttpClientCache (>= 4.0.2061)
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.279 | 57 | 9/5/2026 |
| 4.0.278 | 40 | 9/5/2026 |
| 4.0.277 | 94 | 9/4/2026 |
| 4.0.276 | 103 | 9/4/2026 |
| 4.0.275 | 93 | 9/4/2026 |
| 4.0.274 | 64 | 9/4/2026 |
| 4.0.272 | 67 | 9/4/2026 |
| 4.0.271 | 73 | 9/4/2026 |
| 4.0.270 | 235 | 9/1/2026 |
| 4.0.269 | 108 | 9/1/2026 |
| 4.0.268 | 124 | 8/31/2026 |
| 4.0.267 | 89 | 8/31/2026 |
| 4.0.266 | 135 | 8/31/2026 |
| 4.0.265 | 93 | 8/31/2026 |
| 4.0.264 | 169 | 8/31/2026 |
| 4.0.263 | 83 | 8/30/2026 |
| 4.0.262 | 250 | 8/30/2026 |
| 4.0.261 | 402 | 8/26/2026 |
| 4.0.260 | 185 | 8/26/2026 |
| 4.0.259 | 117 | 8/26/2026 |
Update dependency Soenneker.Utils.HttpClientCache to 4.0.2061 (#576)