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.

Integrate with Reloop using .NET

Official .NET SDK for Reloop. A few lines of code to send production email.

Install

bash
dotnet add package Reloop.Email

Send email

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}");

Send with .NET.

Get an API key, verify your domain, and ship transactional email in minutes.