Soenneker.Resend.Client 4.0.280

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Resend.Client --version 4.0.280
                    
NuGet\Install-Package Soenneker.Resend.Client -Version 4.0.280
                    
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="Soenneker.Resend.Client" Version="4.0.280" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Resend.Client" Version="4.0.280" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Resend.Client" />
                    
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 Soenneker.Resend.Client --version 4.0.280
                    
#r "nuget: Soenneker.Resend.Client, 4.0.280"
                    
#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 Soenneker.Resend.Client@4.0.280
                    
#: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=Soenneker.Resend.Client&version=4.0.280
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Resend.Client&version=4.0.280
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image 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 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 (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.287 0 9/9/2026
4.0.286 39 9/9/2026
4.0.285 54 9/8/2026
4.0.284 115 9/8/2026
4.0.283 74 9/8/2026
4.0.282 119 9/7/2026
4.0.281 84 9/7/2026
4.0.280 123 9/7/2026
4.0.279 202 9/5/2026
4.0.278 82 9/5/2026
4.0.277 163 9/4/2026
4.0.276 187 9/4/2026
4.0.275 176 9/4/2026
4.0.274 122 9/4/2026
4.0.272 124 9/4/2026
4.0.271 128 9/4/2026
4.0.270 310 9/1/2026
4.0.269 132 9/1/2026
4.0.268 138 8/31/2026
4.0.267 95 8/31/2026
Loading failed

Updated Multiple NuGet packages