# Copyright (c) 2008-15 Peter H. Boling of RailsBling.com # Released under the MIT license module SanitizeEmail # For Rails >= 3.1 class Engine < ::Rails::Engine config.to_prepare do ActionMailer::Base.register_interceptor(SanitizeEmail::Bleach.new) end end end