https://github.com/philipmur/emailvalidation
Csharp C# Offline Email Validation
https://github.com/philipmur/emailvalidation
csharp-code dotnet email validate validation
Last synced: 7 months ago
JSON representation
Csharp C# Offline Email Validation
- Host: GitHub
- URL: https://github.com/philipmur/emailvalidation
- Owner: PhilipMur
- License: gpl-2.0
- Created: 2023-07-16T19:31:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-16T19:50:26.000Z (about 2 years ago)
- Last Synced: 2025-01-23T12:31:17.608Z (9 months ago)
- Topics: csharp-code, dotnet, email, validate, validation
- Language: C#
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EmailValidation
Csharp C# Email Validaton offlineA very easy to use C# class in any project.
This project contains a class called ***"ValidateEmailUtility.cs"***, Use this to recreate this class in your own project.
This project comes with a test form to import sample emails via CSV format (charater serperated values) or text format,
#### (see the Samples folder EmailAddressesBad.txt and EmailAddressesGood.txt)Verifies against good samples and bad samples over the last while to detect misspelled email domains (gmail , hotmail etc..) and TLD (com , ie etc...)
This will do 2 things stop email bounces which is bad for our email reputation and stop people from accidentally entering the wrong information so that they can get the email
and don't blame the system for not sending it.## USAGE:
`bool isValid = validateEmail.ValidateEmailAddress("user@gmail.com");`
Test Files can be imported for testing GOOD and BAD email address to verify it works.
Please if you find something wrong post here so we can all benefit thanks.