EmailDomainValidator 1.0.0.45

dotnet add package EmailDomainValidator --version 1.0.0.45
                    
NuGet\Install-Package EmailDomainValidator -Version 1.0.0.45
                    
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="EmailDomainValidator" Version="1.0.0.45" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EmailDomainValidator" Version="1.0.0.45" />
                    
Directory.Packages.props
<PackageReference Include="EmailDomainValidator" />
                    
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 EmailDomainValidator --version 1.0.0.45
                    
#r "nuget: EmailDomainValidator, 1.0.0.45"
                    
#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=EmailDomainValidator&version=1.0.0.45
                    
Install EmailDomainValidator as a Cake Addin
#tool nuget:?package=EmailDomainValidator&version=1.0.0.45
                    
Install EmailDomainValidator as a Cake Tool

Email Validator - A Robust .NET Library for Email Domain Validation

The Email Domain Validator is a powerful and easy-to-use .NET library designed to validate email addresses with precision and efficiency. It ensures that email addresses are not only syntactically correct but also checks for disposable or temporary email domains and verifies the existence of MX (Mail Exchange) records for the domain. With built-in support for caching, asynchronous operations, and third-party API integration, this library is perfect for applications that require reliable email validation.


Key Features

  • Email Format Validation: Validates email addresses using a robust regular expression to ensure they follow the correct format (e.g., user@domain.com).
  • Disposable Email Detection: Detects and blocks emails from known disposable or temporary email services (e.g., Mailinator, 10MinuteMail) using a configurable list of domains.
  • Third-Party API Integration: Seamlessly integrates with external APIs (e.g., Abstract API, Mailboxlayer) for enhanced disposable email detection and additional validation features.
  • MX Record Verification: Checks if the domain of the email address has valid MX records, ensuring the domain can receive emails.
  • Caching for Performance: Implements caching for MX record lookups to improve performance and reduce redundant DNS queries.
  • Asynchronous Support: Provides asynchronous methods for non-blocking email validation, making it ideal for high-performance applications.
  • Customizable Configuration: Allows users to configure the list of disposable email domains and other settings via a configuration file or programmatically.

Why Use Email Validator?

  • Improve Data Quality: Ensure that only valid and non-disposable email addresses are accepted in your application.
  • Enhance Security: Reduce the risk of spam, fraud, and abuse by blocking temporary or disposable email addresses.
  • Boost Performance: Optimize validation with caching and asynchronous operations for faster processing.
  • Easy Integration: Simple API design and seamless integration with .NET applications.
  • Flexible and Extensible: Customize validation rules and integrate with third-party services for advanced use cases.

Use Cases

  • User Registration: Validate email addresses during user sign-up to prevent fake or disposable accounts.
  • Newsletter Subscriptions: Ensure only valid email addresses are added to your mailing list.
  • E-commerce: Verify customer email addresses during checkout to reduce fraud and improve communication.
  • Lead Generation: Validate email addresses collected from forms to maintain a high-quality lead database.
  • Data Cleaning: Clean and validate email addresses in existing databases or CSV files.

Installation

Install the Email Validator package via NuGet:

dotnet add package EmailDomainValidator

Quick Start

using EmailDomainValidator;

var email = "test@example.com";
if (await EmailDomainValidator.ValidateEmailAsync(email))
{
    Console.WriteLine("Email is valid.");
}
else
{
    Console.WriteLine("Email is invalid or disposable.");
}

Configuration

Configure the list of disposable email domains in appsettings.json:

{
    "DisposableDomains": [
        "mailinator.com",
        "10minutemail.com",
        "guerrillamail.com"
    ]
}

Dependencies

  • Microsoft.Extensions.Caching.Memory: For caching MX record lookups.
  • System.Net.Http: For making HTTP requests to third-party APIs.
  • Microsoft.Extensions.Configuration: For loading configuration settings.

Contributing

Contributions are welcome! If you’d like to contribute, please fork the repository and submit a pull request. For major changes, open an issue first to discuss your ideas.


License

This project is licensed under the MIT License. See the LICENSE file for details.



This description is professional, concise, and highlights the value of your package. It’s designed to attract developers and businesses looking for a reliable email validation solution. Let me know if you’d like to tweak it further! 🚀

Product Compatible and additional computed target framework versions.
.NET 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. 
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
1.0.0.45 128 3/14/2025
1.0.0.43 108 3/14/2025
1.0.0.39 115 3/14/2025
1.0.0.37 124 3/14/2025
1.0.0.35 224 3/6/2025
1.0.0.31 195 3/6/2025
1.0.0.11 191 3/5/2025
1.0.0.10 190 3/5/2025
1.0.0.9 185 3/5/2025
1.0.0.8 192 3/5/2025
1.0.0 188 3/5/2025