mimamch / wa-multi-session

Multiple Session Whatsapp Socket Javascript Library
https://www.npmjs.com/package/wa-multi-session
MIT License
114 stars 37 forks source link

send messages to groups #8

Closed ichandkusuma closed 12 months ago

ichandkusuma commented 1 year ago

how to send message to group page? Thx sir.

mimamch commented 12 months ago

Here is how to send a message to group, first you must has group id

code:

 await wa.sendTextMessage({
      sessionId: "mysession",
      to: "62822xxxxx-1631099xxx@g.us",
      isGroup: true,
      text: "Hello Group",
    });