Soenneker.Resend.Emails 4.0.361

Prefix Reserved
dotnet add package Soenneker.Resend.Emails --version 4.0.361
                    
NuGet\Install-Package Soenneker.Resend.Emails -Version 4.0.361
                    
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.361" />
                    
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.361" />
                    
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.361
                    
#r "nuget: Soenneker.Resend.Emails, 4.0.361"
                    
#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.361
                    
#: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.361
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Resend.Emails&version=4.0.361
                    
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.361 0 9/7/2026
4.0.360 0 9/7/2026
4.0.359 85 9/6/2026
4.0.358 63 9/5/2026
4.0.357 99 9/4/2026
4.0.356 54 9/4/2026
4.0.355 73 9/4/2026
4.0.354 67 9/4/2026
4.0.353 55 9/4/2026
4.0.352 56 9/4/2026
4.0.351 57 9/4/2026
4.0.350 68 9/3/2026
4.0.349 56 9/3/2026
4.0.348 134 9/1/2026
4.0.347 99 9/1/2026
4.0.346 102 9/1/2026
4.0.345 118 8/31/2026
4.0.344 133 8/31/2026
4.0.343 108 8/31/2026
4.0.342 133 8/31/2026
Loading failed

Updated Multiple NuGet packages