email-inspector
v1.0.4
Published
A Node.js module for email address analysis and validation.
Downloads
24,157
Maintainers
Keywords
Readme
Email Inspector
Email Inspector is a Node.js package for validating and inspecting email addresses.
Installation
You can install this package using npm:
npm install email-inspector
Usage
Here's how you can use Email Inspector in your Node.js application:
const emailInspector = require('email-inspector');
const email = '[email protected]';
if (emailInspector.validate(email)) {
console.log('Email is valid');
} else {
console.log('Email is invalid');
}
Validation Against Free Email Providers
Email Inspector is designed to verify email addresses against a curated list of free email providers. This validation ensures that your business communication remains uninterrupted and can operate smoothly.
Options
You can customize the behavior of Email Inspector using the following options:
customFreeProviders (Array): An array of custom free email providers to consider during validation.
providersToRemove (Array): An array of email providers to exclude from the list of free providers during validation.
Examples
const emailInspector = require('email-inspector');
// Example 1: Basic validation
const isValid = emailInspector.validate('[email protected]');
console.log(isValid); // true
// Example 2: Custom free providers
const customProviders = ['customprovider.net'];
const isValidCustom = emailInspector.validate('[email protected]', { customFreeProviders: customProviders });
console.log(isValidCustom); // false
Contributing
If you'd like to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and commit them.
- Push your changes to your fork.
- Submit a pull request to the main repository.
License
MIT
Author
Weasely