TempMail.Client
1.0.0
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
dotnet add package TempMail.Client --version 1.0.0
NuGet\Install-Package TempMail.Client -Version 1.0.0
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="TempMail.Client" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TempMail.Client" Version="1.0.0" />
<PackageReference Include="TempMail.Client" />
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 TempMail.Client --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TempMail.Client, 1.0.0"
#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.
#addin nuget:?package=TempMail.Client&version=1.0.0
#tool nuget:?package=TempMail.Client&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
TempMail.Client
The official client for https://temp-mail.io.
TempMail.Client
is an easy-to-use client for https://temp-mail.io based on HttpClient
.
Installation
dotnet add package TempMail.Client
Usage
Create Client
using TempMail.Client;
using var client = TempMailClient.Create(
TempMailConfigurationBuilder.Create()
.WithApiKey("<YOUR-API-KEY>")
.Build());
Send Requests
Get available domains (API docs)
using TempMail.Client.Models;
using TempMail.Client.Requests;
var domainsResponse = await client.GetAvailableDomains();
if (domainsResponse is not { IsSuccess: true, Result.Domains: { } domains })
{
return;
}
foreach (var domain in domains)
{
Console.WriteLine("Domain '{0}' of type {1}", domain.Name, domain.Type);
}
Create a mailbox (API docs)
var ourDomain = domains.First();
Now, we can create a mailbox in three ways:
- by e-mail
var response = await client.CreateEmail(
CreateEmailRequest.ByEmail($"my-email@{ourDomain.Name}"));
- by domain
var response = await client.CreateEmail(
CreateEmailRequest.ByDomain(ourDomain.Name));
- by domain type
var response = await client.CreateEmail(
CreateEmailRequest.ByDomainType(ourDomain.Type));
Whatever way you created the mailbox you can work with it the same way.
if (response is not { IsSuccess: true, Result: { } email })
{
return;
}
Console.WriteLine("Created e-mail {0} with TTL: {1}", email.Email, email.Ttl)
Get all messages in the mailbox (API docs)
var messagesResponse = await client.GetAllMessages(
GetAllMessagesRequest.Create(email.Email));
if (messagesResponse is not { IsSuccess: true, Result.Messages: { } messages })
{
return;
}
foreach (var msg in messages)
{
Console.WriteLine("From {0} to {1}: '{2}'", msg.From, msg.To, msg.BodyText);
}
Get specific message (API docs)
// let's imagine we haven't just got all the messages in the mailbox,
// but stored their IDs somewhere in a DB instead ;)
var messagesIds = messages.Select(x => x.Id).ToArray();
foreach (var msgId in messagesIds)
{
var messageResponse = await client.GetSpecificMessage(
GetSpecificMessageRequest.Create(msgId));
if (messageResponse is not { IsSuccess: true, Result: { } msg })
{
continue;
}
Console.WriteLine("Got message from {0} to {1}: {2}", msg.From, msg.To, msg.BodyText);
}
Delete specific message (API docs)
// let's get rid of all the messages in the mailbox
foreach (var id in messagesIds)
{
var msgDeletionResponse = await client.DeleteSpecificMessage(
DeleteSpecificMessageRequest.Create(id));
}
Get message source code (API docs)
foreach (var id in messagesIds)
{
var sourceResponse = await client.GetMessageSourceCode(
GetMessageSourceCodeRequest.Create(id));
if (sourceResponse is not { IsSuccess: true, Result: { } source })
{
continue;
}
Console.WriteLine("The source code of the message {0} is:\n{1}", id, source);
}
Download attachment to the message (API docs)
// let's download all the attachments of one of the messages we've got
var message = messages.First();
foreach (var attachment in message.Attachments)
{
var attachmentResponse = await client.GetAttachment(
GetAttachmentRequest.Create(attachment.Id));
if (attachmentResponse is not { IsSuccess: true, Result: { } attchmentBody })
{
continue;
}
var file = Path.Combine(Path.GetTempPath(), attachment.Name);
await File.WriteAllBytesAsync(file, attachmentBody);
Console.WriteLine("Downloaded attachment '{0}' ({1} b) at {2}", attachment.Id, attachment.Size, file);
}
Delete the mailbox (API docs)
var deletionResponse = await client.DeleteEmail(
DeleteEmailRequest.Create(email.Email));
if (deletionResponse is not { IsSuccess: true })
{
return;
}
Get rate limit status (API docs)
var rateLimitStatusResponse = await client.GetRateLimitStatus();
if (rateLimitStatusResponse is not { IsSuccess: true, Result: { } rateLimitStatus })
{
return;
}
Console.WriteLine("Limit: {0}; Used: {1}; Remaining: {2}; Reset date-time: {3}",
rateLimitStatus.Limit,
rateLimitStatus.Used,
rateLimitStatus.Remaining,
rateLimitStatus.ResetDateTime);
Error handling
var definitlyErrorResponse = await client.GetSpecificMessage(
GetSpecificMessageRequest.Create("nonexistent-message-id"));
if (definitlyErrorResponse is { IsSuccess: false, ErrorResult: {} error })
{
var side = error.Error.Type switch
{
ErrorType.ApiError => "server",
ErrorType.RequestError => "client"
}
// most common case is to just log error:
Console.WriteLine("An error occured on {0} side: {1}", side, error.Error.Detail);
Console.WriteLine("Contact support using the request ID: {0}", error.Meta.RequestId);
// or one can just throw if there is an error:
definitlyErrorResponse.ThrowIfError();
}
TempMail.Client.AspNetCore
Add TempMailClient
to ASP.NET DI container
...
// pass your API-key
services.AddTempMailClient("<YOUR-API-KEY>");
// or do NOT pass, but ensure you set it via env variable `TEMP_MAIL_API_KEY`
services.AddTempMailClient();
...
Inject and use the client
[Controller]
[Route("/api/v1/[controller]")]
public class EmailController(ITempMailClient tempMailClient) : ControllerBase
{
[HttpPost("/{email}/messages/search")]
public async Task<IActionResult> Search([FromRoute] string email, [FromQuery] string query)
{
var messagesResponse = await tempMailClient.GetAllMessages(GetAllMessagesRequest.Create(email));
messagesResponse.ThrowIfError();
if (string.IsNullOrWhiteSpace(query))
{
return Ok(messagesResponse.Result!.Messages);
}
var queriedMessages = messagesResponse.Result!.Messages
.Where(m =>
m.From.Contains(query) ||
m.To.Contains(query) ||
m.Subject.Contains(query) ||
m.Cc.Contains(query) ||
m.BodyText.Contains(query));
return Ok(queriedMessages);
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- System.Text.Json (>= 9.0.0)
-
net8.0
- System.Text.Json (>= 9.0.0)
-
net9.0
- System.Text.Json (>= 9.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on TempMail.Client:
Package | Downloads |
---|---|
TempMail.Client.AspNetCore
A light-weight client for https://temp-mail.io |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 124 | 2/4/2025 |
0.0.12.4-rc | 111 | 2/4/2025 |
0.0.12.3-rc | 98 | 2/4/2025 |
0.0.12.2-rc | 93 | 1/18/2025 |
0.0.12.1-rc | 86 | 1/18/2025 |
0.0.12 | 117 | 1/17/2025 |
0.0.11.3 | 105 | 1/17/2025 |
0.0.10.3-rc | 91 | 1/17/2025 |
0.0.10.2-rc | 90 | 1/17/2025 |
0.0.10 | 102 | 1/16/2025 |
0.0.9.9-rc | 86 | 1/16/2025 |
0.0.9.8-rc | 88 | 1/16/2025 |
0.0.9.7-rc | 95 | 1/16/2025 |
0.0.9.6-rc | 92 | 1/16/2025 |
0.0.9.5-rc | 87 | 1/16/2025 |
0.0.9.3-rc | 99 | 1/16/2025 |
0.0.9.2-rc | 89 | 1/16/2025 |
0.0.9.1-rc | 93 | 1/16/2025 |
0.0.9 | 111 | 1/15/2025 |
0.0.8 | 108 | 1/15/2025 |
0.0.6.55-rc | 93 | 1/15/2025 |
0.0.6.54-rc | 86 | 1/15/2025 |
0.0.6.53-rc | 79 | 1/15/2025 |
0.0.6.52-rc | 85 | 1/15/2025 |
0.0.6.51-rc | 86 | 1/15/2025 |
0.0.6.50-rc | 87 | 1/15/2025 |
0.0.6.49-rc | 97 | 1/15/2025 |
0.0.6.48-rc | 84 | 1/15/2025 |
0.0.6.47-rc | 83 | 1/15/2025 |
0.0.6.46-rc | 81 | 1/15/2025 |
0.0.6.45-rc | 88 | 1/15/2025 |
0.0.6.44-rc | 81 | 1/15/2025 |
0.0.6.43-rc | 85 | 1/15/2025 |
0.0.6.42-rc | 82 | 1/15/2025 |
0.0.6.41-rc | 100 | 1/15/2025 |
0.0.6.40-rc | 93 | 1/15/2025 |
0.0.6.39-rc | 89 | 1/15/2025 |
0.0.6.38-rc | 89 | 1/15/2025 |
0.0.6.37-rc | 87 | 1/15/2025 |
0.0.6.36-rc | 90 | 1/15/2025 |
0.0.6.35-rc | 85 | 1/15/2025 |
0.0.6.34-rc | 86 | 1/15/2025 |
0.0.6.33-rc | 94 | 1/15/2025 |
0.0.6.32-rc | 88 | 1/15/2025 |
0.0.6.31-rc | 89 | 1/15/2025 |
0.0.6.30-rc | 97 | 1/15/2025 |
0.0.6.29-rc | 85 | 1/15/2025 |
0.0.6.28-rc | 91 | 1/15/2025 |
0.0.6.27-rc | 86 | 1/15/2025 |
0.0.6.26-rc | 103 | 1/15/2025 |
0.0.6.24-rc | 89 | 1/15/2025 |
0.0.6.23-rc | 95 | 1/15/2025 |
0.0.6.22-rc | 87 | 1/15/2025 |
0.0.6.21-rc | 98 | 1/15/2025 |
0.0.6.20-rc | 83 | 1/15/2025 |
0.0.6.19-rc | 95 | 1/15/2025 |
0.0.6.18-rc | 92 | 1/15/2025 |
0.0.6.17-rc | 95 | 1/15/2025 |
0.0.6.15-rc | 100 | 1/15/2025 |
0.0.6.13-rc | 81 | 1/15/2025 |
0.0.6.12-rc | 93 | 1/15/2025 |
0.0.6.11-rc | 84 | 1/15/2025 |
0.0.6.6-rc | 91 | 1/15/2025 |
0.0.6.4-rc | 97 | 1/15/2025 |
0.0.6.3-rc | 88 | 1/14/2025 |
0.0.6.2-rc | 89 | 1/14/2025 |
0.0.6.1-rc | 109 | 1/13/2025 |
0.0.6 | 122 | 1/13/2025 |
0.0.5 | 107 | 1/13/2025 |
0.0.3.16-rc | 106 | 1/13/2025 |
0.0.3.15-rc | 104 | 1/13/2025 |
0.0.3.14-rc | 108 | 1/13/2025 |
0.0.3.13-rc | 97 | 1/13/2025 |
0.0.3.9-rc | 98 | 1/13/2025 |
0.0.3.8-rc | 106 | 1/13/2025 |
0.0.3.5 | 123 | 1/13/2025 |
0.0.3.5-rc | 105 | 1/13/2025 |
0.0.3.4 | 87 | 1/13/2025 |
0.0.2 | 120 | 1/13/2025 |
0.0.1 | 104 | 1/10/2025 |