Skip to content

Normalize different email formats, including for popular mail providers such as gmail, outlook, etc.

License

Notifications You must be signed in to change notification settings

Pinggy-io/normalize-email

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Normalize-Email Java Library

Welcome to the Normalize-Email library! This Java library provides a straightforward way to normalize email addresses by applying various strategies for popular email domains. It supports built-in strategies for Gmail, Outlook, Live, and Hotmail, and also allows users to define and modify their own normalization strategies. If an email domain does not have a predefined strategy, a default strategy is applied.

Table of Contents

Features

  • Built-in Strategies: Normalization strategies for Gmail, Outlook, Live, and Hotmail.
  • Custom Strategies: Ability to add and modify normalization strategies based on user needs.
  • Default Strategy: Automatically applies a default normalization strategy for unsupported email domains.
  • Flexible Integration: Easily integrate into your existing Java projects.

Getting Started

To get started with Normalize-Email, follow these instructions:

  1. Add the Dependency

    Add the following dependency to your pom.xml:

    <dependency>
        <groupId>io.pinggy</groupId>
        <artifactId>email-normalizer</artifactId>
        <version>0.0.1</version>
    </dependency>
    

Usage

Basic Usage

Here’s a quick example of how to use EmailNormalizer:

public class Main {
    public static void main(String[] args) {
        // Create an instance of EmailNormalizerImpl
        EmailNormalizerImpl normalizer = new EmailNormalizerImpl();
        
        // Normalize an email address
        String normalizedEmail = normalizer.normalize("example@gmail.com");
        System.out.println("Normalized Email: " + normalizedEmail);
    }
}

Adding Custom Strategies

You can add custom normalization strategies by implementing the EmailNormalizationStrategy interface and registering it with EmailNormalizationImpl. Here’s how you can do it:

Implement the EmailNormalizationStrategy Interface

Create a class that implements the EmailNormalizationStrategy interface and provides the logic for your custom normalization.

   public class CustomNormalizationStrategy implements NormalizationStrategy {
       @Override
       public String normalizeEmailString(String localPart, String domain) {
           // Implement custom normalization logic here
           return localPart + "@" +domain;
       }
   }

License

This project is licensed under the MIT License.

Contact

For questions or feedback, please contact us at contact@pinggy.io

About

Normalize different email formats, including for popular mail providers such as gmail, outlook, etc.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages