email_address
email_address copied to clipboard
The EmailAddress Gem to work with and validate email addresses.
An end-user on our site complained that their legitimate email address was rejected as invalid. They are using a custom domain with a ".org.uk" TLD. The domain is currently registered...
Tries to call `I18n.t!("email_address.#{name}")` at `error_message()`. This could raise exceptions in two cases: - `I18n` doesn't exist (because you are not on Rails) - The key was not found on...
If you try to validate an email address without `dns_lookup: :off` option before trying to validate it again, but now using the option `dns_lookup: :off`, the gem will still try...
**Description:** Validation gives inconsistent results depending on network status. **Reproduction:** 1. Turn off your network connection. 1. Do the following: ``` irb(main):001:0> require 'email_address' => true irb(main):002:0> EmailAddress::Config.configure(host_validation: :mx) =>...
https://keepachangelog.com/en/0.3.0/
This allows addresses starting with `+` to be treat as valid in `standard` format. For example phone number based emails like `[email protected]`. `+` is a valid character in local part...