# File lib/vcard/vcard.rb, line 1138
      def add_email(email) # :yield: email
        x = ::Vcard::Vcard::Email.new(email)
        if block_given?
          yield x
        end
        @card << x.encode
        self
      end