# File lib/mail/core_extensions/object.rb, line 6
  def blank?
    if respond_to?(:empty?)
      empty?
    else
     !self
    end
  end