# File lib/mail/fields/common/common_address.rb, line 73
      def <<(val)
        case
        when val.nil?
          raise ArgumentError, "Need to pass an address to <<"
        when val.blank?
          parse(encoded)
        else
          parse((formatted + [val]).join(", "))
        end
      end