Low commit activity in last 3 years
No release in over a year
A custom html-proofer test that makes your mailto links awesome
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0.2
~> 13.0.6
~> 3.12, >= 3.12.0
~> 0.9, >= 0.9.6
~> 6.1, >= 6.1.0

Runtime

~> 5.0, >= 5.0.4
 Project Readme

Gem Ruby

html-proofer-mailto_awesome

A custom html-proofer test that makes your mailto: links awesome.

What is an awesome mailto link?

We should use awesome links as psychological warfare against users. Users will send us emails with stupid or annoying content that we don't want. At big companies (like Amazon) they have abandoned email altogether because of this reason. So instead we prefill the email with the message we want to receive. It takes active cognitive effort for the user to put in their unwanted message.

For example, this is a not-awesome mailto link:

<a href="mailto:support@pacificmedicaltraining.com">Email us</a>

This is an awesome link:

<a href="mailto:support@pacificmedicaltraining.com?subject=Signing up&amp;body=Hello,\nI'd like to sign up for your course, can you please send me more information.">Email us</a>

For more reference, see http://marcwitteveen.com/mailtogenerator/

How do I use it

Follow the same instructions as for any html-proofer custom class.

Our ruby gem is html-proofer-mailto_awesome

  1. Add new dependency to your Ruby project

    In Gemfile:

      gem 'html-proofer-mailto_awesome'
    

    Or in your .gemspec:

      Gem::Specification.new do |s|
          ...
          s.add_runtime_dependency 'html-proofer-mailto_awesome'
      end
    
  2. Create a Rakefile like the following and add it to your project

    task :default => [:test]
    
    desc 'run Rspec specs'
    task :test do
      sh 'rspec spec'
    end
    
  3. Run bundle install

  4. Run rake

Also if you like, you can enable your project for continuous integration testing with Travis:

  1. Set up Travis CI for your project

  2. Add a .travis.yml file like the following to your project and your spec will run automatically

    language: ruby
    rvm:
      - 2.5.3       
    

For additional tests you can run on your website, see Lightning Sites and for a sample GitHub project that implements this testing and follows many other HTML development best practices, see HTML Website Template.

For a full example of a website project that includes testing continuous integration testing for awesome mailto links and many other best practices, see our

Contributing

This project is released under the MIT license.

Releasing new versions:

gem bump
rm html-proofer-mailto_awesome-*.gem
gem build html-proofer-mailto_awesome.gemspec
gem push html-proofer-mailto_awesome-*.gem