Finturest.Email.Abstractions
1.0.1
dotnet add package Finturest.Email.Abstractions --version 1.0.1
NuGet\Install-Package Finturest.Email.Abstractions -Version 1.0.1
<PackageReference Include="Finturest.Email.Abstractions" Version="1.0.1" />
<PackageVersion Include="Finturest.Email.Abstractions" Version="1.0.1" />
<PackageReference Include="Finturest.Email.Abstractions" />
paket add Finturest.Email.Abstractions --version 1.0.1
#r "nuget: Finturest.Email.Abstractions, 1.0.1"
#addin nuget:?package=Finturest.Email.Abstractions&version=1.0.1
#tool nuget:?package=Finturest.Email.Abstractions&version=1.0.1
Finturest Email API C# SDK
Official C# SDK for the Finturest Email API - supports .NET Standard 2.0+ and all modern .NET versions.
Overview
This SDK provides a simple and reliable way to integrate Finturest Email API functionality into your .NET applications. It supports .NET Standard 2.0 and later, ensuring compatibility with .NET Core and the latest .NET releases.
Features
Accurate Format Validation: Ensures email addresses are correctly structured according to RFC standards before processing.
Domain Reliability Checks: Verifies that email domains are properly configured with MX records to improve deliverability and reduce bounce rates.
Disposable and Free Email Detection: Identifies temporary and free email providers to help prevent fraud, spam, fake accounts, and low-quality signups.
Role-Based Email Filtering: Flags generic role-based addresses like
info@
,support@
, etc., to improve user targeting and communication quality.
Installation
Using the .NET Core command-line interface (CLI) tools:
dotnet add package Finturest.Email
Using the NuGet Command Line Interface (CLI):
nuget install Finturest.Email
Using the Package Manager Console:
Install-Package Finturest.Email
From within Visual Studio:
- Open the Solution Explorer.
- Right-click on a project within your solution.
- Click on Manage NuGet Packages...
- Click on the Browse tab and search for "Finturest.Email".
- Click on the Finturest.Email package, select the appropriate version in the right-tab and click Install.
Usage
Registering
To use the Finturest.Email
client, register it in your application's dependency injection container using AddFinturestEmail
. This configures the services required to communicate with the Finturest Email API.
var services = new ServiceCollection();
services.AddFinturestEmail(options =>
{
options.ApiKey = "YOUR_API_KEY";
});
Note
IEmailServiceClient
is registered in the DI container and should be resolved via dependency injection.
In ASP.NET Core applications, it's recommended to inject it through constructor injection.
Note
The abstractions for the Finturest Email API client are provided in a separate package namedFinturest.Email.Abstractions
.
You can reference this package in your business layer to avoid a tight dependency on the implementation.
Only the root application or composition root should reference the fullFinturest.Email
package that contains the implementation.
Validating
To validate an email address using the Finturest Email API, create a ValidateEmailRequest
and call the ValidateEmailAsync
method on the IEmailServiceClient
.
var serviceProvider = services.BuildServiceProvider();
var emailServiceClient = serviceProvider.GetRequiredService<IEmailServiceClient>();
var request = new ValidateEmailRequest
{
Email = "support@finturest.com"
};
var result = await emailServiceClient.ValidateEmailAsync(request);
Console.WriteLine($"Deliverable: {result.Deliverable}.");
Note
In production applications, avoid usingBuildServiceProvider()
manually.
Instead, use constructor injection to getIEmailServiceClient
from the framework’s dependency injection system.
Subscription & Pricing
To get access to the Finturest Email API or subscribe to a plan, please visit the subscription page. An active subscription is required to access the API in production.
API Key Generation
An API key is required to use the SDK and can be generated on your Finturest dashboard:
Documentation
For full API reference and usage guides, please visit the official Finturest Email API documentation:
Contact
For support, questions, or inquiries, please contact us at: support@finturest.com
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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. net10.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net5.0
- No dependencies.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Finturest.Email.Abstractions:
Package | Downloads |
---|---|
Finturest.Email
Official C# SDK for Finturest Email API - supports .NET Standard 2.0+ and all modern .NET versions. |
GitHub repositories
This package is not used by any popular GitHub repositories.