Soenneker.Validators.Email.Disposable 4.0.4562

Prefix Reserved
dotnet add package Soenneker.Validators.Email.Disposable --version 4.0.4562
                    
NuGet\Install-Package Soenneker.Validators.Email.Disposable -Version 4.0.4562
                    
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="Soenneker.Validators.Email.Disposable" Version="4.0.4562" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Validators.Email.Disposable" Version="4.0.4562" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Validators.Email.Disposable" />
                    
Project file
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 Soenneker.Validators.Email.Disposable --version 4.0.4562
                    
#r "nuget: Soenneker.Validators.Email.Disposable, 4.0.4562"
                    
#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.
#:package Soenneker.Validators.Email.Disposable@4.0.4562
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Validators.Email.Disposable&version=4.0.4562
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Validators.Email.Disposable&version=4.0.4562
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Validators.Email.Disposable

A validation module checking if a given email's domain is disposable/temporary, updated daily (if available)

Installation

dotnet add package Soenneker.Validators.Email.Disposable

Register EmailDisposableValidator in your .NET application using IServiceCollection:

services.AddEmailDisposableValidatorAsSingleton();

Usage

Inject IEmailDisposableValidator and validate emails or domains:

public class MyService
{
    private readonly IEmailDisposableValidator _validator;

    public MyService(IEmailDisposableValidator validator)
    {
        _validator = validator;
    }

    // Returns FALSE if disposable (i.e. mailinator.com). TRUE if non-disposable.
    public async Task<bool> IsNonDisposableEmail(string email)
    {
        return await _validator.Validate(email);
    }
}
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.4562 22 8/14/2026
4.0.4561 43 8/13/2026
4.0.4560 40 8/13/2026
4.0.4559 56 8/13/2026
4.0.4558 65 8/13/2026
4.0.4556 60 8/13/2026
4.0.4555 74 8/12/2026
4.0.4554 66 8/12/2026
4.0.4553 69 8/12/2026
4.0.4552 86 8/10/2026
4.0.4551 90 8/9/2026
4.0.4550 85 8/9/2026
4.0.4549 85 8/9/2026
4.0.4548 82 8/8/2026
4.0.4547 83 8/8/2026
4.0.4545 84 8/8/2026
4.0.4543 92 8/8/2026
4.0.4541 89 8/8/2026
4.0.4540 93 8/7/2026
4.0.4539 93 8/7/2026
Loading failed

Update dependency Soenneker.Data.Email.Disposables to 4.0.1037 (#5061)