• Home

  • Custom Ecommerce
  • Application Development
  • Database Consulting
  • Cloud Hosting
  • Systems Integration
  • Legacy Business Systems
  • Security & Compliance
  • GIS

  • Expertise

  • About Us
  • Our Team
  • Clients
  • Blog
  • Careers

  • CasePointer

  • VisionPort

  • Contact
  • Our Blog

    Ongoing observations by End Point Dev people

    Announcing Ruby gem: email_verifier

    Kamil Ciemniewski

    By Kamil Ciemniewski
    December 21, 2012

    How many times have you tried to provide a really nice validation solution for our fields containing user emails? Most of the time, the best we can come up with is some long and incomprehensible regex we find on StackOverflow or somewhere else on the Internet.

    But that’s really only a partial solution. As much as email format correctness is a tricky thing to get right using regular expressions, it doesn’t provide us with any assurance that user entered email address in reality exists.

    But it does a great job at finding out some typos and misspellings… right?

    Yes - but I’d argue that it doesn’t cover full range of that kind of data entry errors. The user could fill in ‘whatever’ and traditional validation through regexes would do a great job at finding out that it’s not really an email address. But what I’m concerned with here are all those situations when I fat finger kaml@endpoint.com instead of kamil@endpoint.com.

    Some would argue at this point that it’s still recoverable since I can find out about the error on the next page in a submission workflow, but I don’t want to spend another something-minutes on going through the whole process again (possibly filling out tens of form fields along the way).

    And look at this issue from the point of view of a web application owner: You’d like to be sure that all those leads you have in your database point to some real people and that some percentage of them will end up paying you at some point real money, making you a living. What if even 10% of email addresses invalid (being valid email addresses but pointing to no real mailboxes) due to user error? What would that potentially mean to you in cash?

    The Solution

    Recently, I faced this email validation question for Mobixa.com. (By the way, if you own a smart phone that you’d like to sell - there is no better place than there to do it!)

    The results of my work, I’d like to announce here and now. Please give a warm welcome to a newborn citizen of RubyGems society: email_verifier

    How does it work?

    Email verifier takes a different approach to email validation. Instead of checking just the format of given address in question - it actually tries to connect with a mail server and pretends to send a real mail message. We can call it ‘asking mail server if recipient exists’.

    How to use it?

    Add this line to your application’s Gemfile:

    gem 'email_verifier'
    

    And then execute:

    $ bundle
    

    Or install it yourself as:

    $ gem install email_verifier
    

    Some SMTP servers will not allow you to check if you will not present yourself as some real user. So first thing you’d need to set up is to put something like this either in initializer or in application.rb file:

    EmailVerifier.config do |config|
      config.verifier_email = "realname@realdomain.com"
    end
    

    Then add this to your model:

    validates_email_realness_of :email
    

    Or - if you’d like to use it outside of your models:

    EmailValidator.check(youremail)
    

    This method will return true or false, or will throw exception with nicely detailed info about what’s wrong.

    Read more about the extension at Email verifier RDoc or try to sell your smartphone at Mobixa.com.

    ruby rails


    Comments