Soenneker.Resend.Emails 4.0.348

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

Sends individual or batched email, retrieves sent-email details, and cancels scheduled messages through Resend.

Installation

dotnet add package Soenneker.Resend.Emails

Configuration

{
  "Resend": {
    "ApiKey": "re_xxxxxxxxx"
  }
}

Usage

using Soenneker.Resend.Emails.Abstract;
using Soenneker.Resend.Emails.Registrars;

services.AddResendEmailsUtilAsSingleton();

public sealed class WelcomeEmailSender
{
    private readonly IResendEmailsUtil _emails;

    public WelcomeEmailSender(IResendEmailsUtil emails)
    {
        _emails = emails;
    }

    public ValueTask<string?> Send(
        string recipient,
        CancellationToken cancellationToken)
    {
        return _emails.Send(
            from: "Acme <welcome@example.com>",
            to: [recipient],
            subject: "Welcome",
            html: "<strong>Thanks for joining.</strong>",
            cancellationToken: cancellationToken);
    }
}

Send performs the API call immediately unless scheduledAt is supplied and returns Resend's email ID. The sender must use a domain authorized in Resend. Use SendBatch for up to 100 messages in one request, Get to retrieve an email, and CancelScheduled before a scheduled message is sent.

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 (2)

Showing the top 2 NuGet packages that depend on Soenneker.Resend.Emails:

Package Downloads
Soenneker.Email.Senders.Resend

A high-level utility responsible for orchestrating the creation and delivery of templated email messages using Resend

Soenneker.Resend.OpenApi.Suite

Provides one registration point for Resend email operations.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.359 0 9/6/2026
4.0.358 0 9/5/2026
4.0.357 56 9/4/2026
4.0.356 40 9/4/2026
4.0.355 57 9/4/2026
4.0.354 55 9/4/2026
4.0.353 46 9/4/2026
4.0.352 44 9/4/2026
4.0.351 47 9/4/2026
4.0.350 52 9/3/2026
4.0.349 48 9/3/2026
4.0.348 128 9/1/2026
4.0.347 96 9/1/2026
4.0.346 100 9/1/2026
4.0.345 116 8/31/2026
4.0.344 129 8/31/2026
4.0.343 103 8/31/2026
4.0.342 131 8/31/2026
4.0.341 110 8/30/2026
4.0.340 153 8/30/2026
Loading failed

Updated NuGet packages