Skip to content

Validate email for common typos and one-time email providers

License

Notifications You must be signed in to change notification settings

klaxit/email_inquire

 
 

Repository files navigation

EmailInquire

Gem Version Build Status codecov Dependency Status Code Climate

EmailInquire is a library to validate email for format, common typos and one-time email providers.

Changelog

Why?

Before a user is a user, they are a visitor. And they must register to be so. What if they makes a typo while entering their email address during the registration ? If they didn't notice, you just lost them. They won't be able to sign in next time.

Your users :

  • may not be as tech savvy as you;
  • may not remember exactly their email address;
  • may make a typo while typing their email address (very very common on a mobile keyboard).

While we can't do so much for the name part of the email address, for the domain part, we can be smart!

And also, we don't want for users to use one-time email addresses (also called burner or disposable email addresses).

Supported cases

Format error. This doesn't strictly follow RFC 5322, it aims at validating email that will be deliverable on Internet. It also takes into account length of email, name part and domain part as per SMTP specification.

One char typo for 43 common email providers (worldwide and from France, United Kingdom and USA):

  • gmil.com => hint gmail.com
  • hitmail.com => hint hotmail.com
  • outloo.com => hint outlook.com
  • virinmedia.com => hint virginmedia.com
  • ...

ccTLD specificity, like United Kingdom .xx.uk domains:

  • foo.couk => hint foo.co.uk
  • fooco.uk => hint foo.co.uk
  • foo.uk => hint foo.co.uk
  • foo.judiciary.uk => ok!
  • ...

...and same thing with .co.jp & .com.br domains.

Providers with an unique domain:

  • gmail.fr => hint gmail.com
  • gmail.de => hint gmail.com
  • google.com => hint gmail.com
  • free.com => hint free.fr
  • laposte.com => hint laposte.net
  • laposte.fr => hint laposte.net
  • ...

3764 one-time email providers (a.k.a. burners, or disposable email source):

  • yopmail.com => invalid
  • ...

Custom invalid domains: Add your own invalid domains:

# in config/initializers/email_inquire.rb
EmailInquire.custom_invalid_domains << "bad-domain.com"
  • bad-domain.com => invalid

Installation

Add this line to your application's Gemfile:

gem 'email_inquire'

And then execute:

$ bundle

Or install it yourself as:

$ gem install email_inquire

Usage

Use EmailInquire.validate(email), you'll get a EmailInquire::Response that represents weither or not the email address is valid or may contain a mistake.

Methods of EmailInquire::Response:

Method Description Possible values
#email The validated email address "[email protected]"
#status The status of the validation :valid :invalid or :hint
#valid? Is the email valid ? true or false
#invalid? Is the email invalid ? true or false
#hint? Is there a possible mistake and you have to show a hint to the user ? true or false
#replacement A proposal replacement email address for when status is :hint "[email protected]" or nil

Examples

A valid case:

response = EmailInquire.validate("[email protected]")
response.status # :valid
response.valid? # true

An invalid case:

response = EmailInquire.validate("[email protected]")
response.status   # :invalid
response.valid?   # false
response.invalid? # true

A hint case:

response = EmailInquire.validate("[email protected]")
response.status      # :hint
response.valid?      # false
response.hint?       # true
response.replacement # "[email protected]"

A custom invalid case:

# in config/initializers/email_inquire.rb
EmailInquire.custom_invalid_domains << "bad-domain.com"

then:

response = EmailInquire.validate("[email protected]")
response.status   # :invalid
response.valid?   # false
response.invalid? # true

Hint

I think it's important to just offer a hint to the user and to not automatically replace the maybe faulty email address in the form.

A "Did you mean [email protected] ?" has the following advantages:

  • user remains in charge: we could have hinted against a perfectly valid email;
  • user is educated;
  • mini whaoo effect;

This "Did you mean [email protected] ?" is better being actionable, and appearing to be so: a click or tap on it should replace the email by the suggestion.

  +---------------------------------------+  +---------+
  | [email protected]                     |  | Sign Up |
  +---------------------------------------+  +---------+
    Did you mean [email protected] ?

Note that you could even have this validation for your Sign In form...

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/maximeg/email_inquire.

License

The gem is available as open source under the terms of the MIT License.

About

Validate email for common typos and one-time email providers

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 99.6%
  • Shell 0.4%