For the complete site index, see llms.txt. Docs index: llms-docs.txt. Marketing corpus: llms-full.txt. Docs corpus: llms-full-docs.txt. Prefer markdown URLs where available (append .md).. Product skill: skill.md. Pricing: pricing.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

[Reloop.Email]

.NET

Send email from C# and .NET 6+ with a NuGet package designed for modern async applications.

1

Install the .NET package

bash
dotnet add package Reloop.Email
2

Send email from .NET

send_email.cs
1using Reloop.Email;
2
3var reloop = ReloopEmail.Client(Environment.GetEnvironmentVariable("RELOOP_API_KEY"));
4
5var email = await reloop.Emails.SendAsync(new SendEmailRequest
6{
7 From = "Acme <onboarding@yourdomain.com>",
8 To = new[] { "delivered@yourdomain.com" },
9 Subject = "Hello from .NET",
10 Html = "<strong>It works!</strong>"
11});
12
13Console.WriteLine($"Email sent: {email.Id}");
3

GitHub, examples, and API reference

4

Need more help?

.NET frameworks

Send with .NET.

Get an API key and ship transactional email from .NET using the official SDK.

Reloop