Soenneker.Resend.Emails
4.0.352
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Resend.Emails --version 4.0.352
NuGet\Install-Package Soenneker.Resend.Emails -Version 4.0.352
<PackageReference Include="Soenneker.Resend.Emails" Version="4.0.352" />
<PackageVersion Include="Soenneker.Resend.Emails" Version="4.0.352" />
<PackageReference Include="Soenneker.Resend.Emails" />
paket add Soenneker.Resend.Emails --version 4.0.352
#r "nuget: Soenneker.Resend.Emails, 4.0.352"
#:package Soenneker.Resend.Emails@4.0.352
#addin nuget:?package=Soenneker.Resend.Emails&version=4.0.352
#tool nuget:?package=Soenneker.Resend.Emails&version=4.0.352
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 | 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.Resend.ClientUtil (>= 4.0.330)
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 | 42 | 9/5/2026 |
| 4.0.357 | 80 | 9/4/2026 |
| 4.0.356 | 43 | 9/4/2026 |
| 4.0.355 | 60 | 9/4/2026 |
| 4.0.354 | 55 | 9/4/2026 |
| 4.0.353 | 48 | 9/4/2026 |
| 4.0.352 | 48 | 9/4/2026 |
| 4.0.351 | 49 | 9/4/2026 |
| 4.0.350 | 53 | 9/3/2026 |
| 4.0.349 | 49 | 9/3/2026 |
| 4.0.348 | 130 | 9/1/2026 |
| 4.0.347 | 97 | 9/1/2026 |
| 4.0.346 | 100 | 9/1/2026 |
| 4.0.345 | 116 | 8/31/2026 |
| 4.0.344 | 131 | 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 |
Updated Multiple NuGet packages