@wppconnect-team/wppconnect - v1.36.4
    Preparing search index...

    Function sendVCardContactMessage

    • Send a VCard as message

      Parameters

      Returns Promise<SendMessageReturn>

      // single contact
      WPP.chat.sendVCardContactMessage('[number]@c.us', {
      id: '123456@c.us',
      name: 'The Contact Name'
      });

      // multiple contacts
      WPP.chat.sendVCardContactMessage('[number]@c.us', [
      {
      id: '123456@c.us',
      name: 'The Contact Name'
      },
      {
      id: '456789@c.us',
      name: 'Another Contact'
      },
      ]);