EmailValidator

Build Status Code Climate Test Coverage

An email validator for Rails 3+.

Supports RFC-2822-compliant and RFC-5321-compliant email validation.

Formerly found at: https://github.com/balexand/email_validator

Validation philosophy

The default validation provided by this gem (the :loose configuration option) is extremely loose. It just checks that there's an @ with something before and after it without any whitespace. See this article by David Gilbertson for an explanation of why.

We understand that maybe use cases require more stricy validation and this is supported by using the :moderate validation mode. Additionally, the :strict RFC-compliant mode will consider technically valid emails address as valid which may not be wanted, such as the valid user or user@somehost addresses. These would be valid in :strict mode but not valid in :loose or :moderate.

Installation

Add to your Gemfile:

gem 'email_validator'

Run:

bundle install

Usage

Add the following to your model:

validates :my_email_attribute, email: true

You may wish to allow domains without a FDQN, like user@somehost. While this is technically a valid address, it is uncommon to consider such address valid. We will consider them valid by default with the :loose checking. Disallowed by setting require_fqdn: true or by enabling :moderate checking:

validates :my_email_attribute, email: {mode: :moderate, require_fqdn: true}

You can also limit to a single domain (e.g: this might help if, for example, you have separate User and AdminUser models and want to ensure that AdminUser emails are on a specific domain):

validates :my_email_attribute, email: {domain: 'example.com'}

Configuration

Default configuration can be overridden by setting options in config/initializers/email_validator.rb:

if defined?(EmailValidator)
  # To completly override the defaults
  EmailValidator.default_options = {
    allow_nil: false,
    domain: nil,
    require_fqdn: nil,
    mode: :loose
  }

  # or just a few options
  EmailValidator.default_options.merge!({ domain: 'mydomain.com' })
end

Loose mode

This it the default validation mode of this gem. It is intentionally extremely loose (see the Validation Philosophy section above. It just checks that there's an @ with something before and after it without any whitespace. The :domain and :require_fqdn option are ignored in :loose mode.

Moderate mode

Enabling :moderate checking will check for a "normal" email format that would be expected in most common everyday usage. Moderate mode basically checks for a properly sized and formatted mailbox label, a single "@" symbol, and a properly sized and formatted FQDN. Enabling :moderate mode will also enable :require_fqdn configuration option.

Moderate mode can be enabled globally by requiring email_validator/moderate in your Gemfile, by setting the option in config/initializers/email_validator.rb, or by specifying the option in a specific validates call.

  • Gemfile:
  gem 'email_validator', github: 'karlwilbur/email_validator', require: 'email_validator/moderate'
  • config/initializers/email_validator.rb:
  if defined?(EmailValidator)
    EmailValidator.default_options[:mode] = :moderate
  end
  • validates call:
  validates :my_email_attribute, email: {mode: :moderate}

Strict mode

In order to have stricter validation (according to http://www.remote.org/jochen/mail/info/chars.html) enable :strict mode.

You can do this globally by requiring email_validator/strict in your Gemfile, by setting the options in config/initializers/email_validator.rb, or you can do this in a specific validates call.

  • Gemfile:
  gem 'email_validator', github: 'karlwilbur/email_validator', require: 'email_validator/strict'
  • config/initializers/email_validator.rb:
  if defined?(EmailValidator)
    EmailValidator.default_options[:mode] = :strict
  end
  • validates call:
  validates :my_email_attribute, email: {mode: :strict}

Validation outside a model

If you need to validate an email outside a model, you can get the regexp:

Loose/default mode

EmailValidator.valid?('[email protected]') # boolean

Requiring a FQDN

EmailValidator.valid?('narf@somehost') # boolean false
EmailValidator.invalid?('narf@somehost', require_fqdn: false) # boolean true

Requiring a specific domain

EmailValidator.valid?('[email protected]', domain: 'foo.com') # boolean false
EmailValidator.invalid?('[email protected]', domain: 'foo.com') # boolean true

Moderate mode

EmailValidator.regexp(mode: :moderate) # returns the regex
EmailValidator.valid?('[email protected]', mode: :moderate) # boolean

Strict mode

EmailValidator.regexp(mode: :strict) # returns the regex
EmailValidator.valid?('[email protected]', mode: :strict) # boolean

Thread safety

This gem is thread safe, with one caveat: EmailValidator.default_options must be configured before use in a multi-threaded environment. If you configure default_options in a Rails initializer file, then you're good to go since initializers are run before worker threads are spawned.

Alternative gems

Do you prefer a different email validation gem? If so, open an issue with a brief explanation of how it differs from this gem. I'll add a link to it in this README.

Maintainers

All thanks is given to Brian Alexander (balexand) for is initial work on this gem.

Currently maintained by: