open-wa / wa-automate-nodejs

💬 🤖 The most reliable tool for chatbots with advanced features. Be sure to 🌟 this repository for updates!
https://docs.openwa.dev/
Other
3.14k stars 600 forks source link

allow sending multiple vcards #2710

Closed smashah closed 2 years ago

smashah commented 2 years ago
await client.sendVcard(chatId, `BEGIN:VCARD
VERSION:2.1
N:FirstName;LastName;;;
FN:FirstName LastName
TEL;CELL:+27123456789
TEL;CELL:+27123456789
ORG:SomeOrg
END:VCARD
BEGIN:VCARD
VERSION:2.1
N:FirstName2;LastName2;;;
FN:FirstName2 LastName2
TEL;CELL:+2123123456780
TEL;CELL:+212312356780
ORG:SomeOrg
END:VCARD`);

should send this:

image

smashah commented 2 years ago

@github-actions run

âš¡ Release! âš¡ ```js (async () => { function exec(cmd) { console.log(execSync(cmd).toString()); } //set the version type process.env.VERS = "patch" // Config const gitUserEmail = "github-actions[bot]@users.noreply.github.com"; const gitUserName = "github-actions[bot]"; exec(`echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc`); exec(`git config --global user.email "${gitUserEmail}"`); exec(`git config --global user.name "${gitUserName}"`); exec(`npm i -D`); exec(`npm run release-ci $VERS`); // types only package exec('npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN') exec(`cd ./types-only && npm version $VERS && npm run build && npm publish && cd ..`); exec(`git commit -a -m 'updated types-only package'`); exec(`git push --force`); //comment on the issue var result = execSync(`npx auto-changelog -o ./tempchangelog.txt --commit-limit false --template ./compact-keepachangelog.hbs --stdout`).toString(); await postComment(result); //create changelog image exec(`npm run release-image`); exec(`git commit -a -m 'updated release-image'`); exec(`git push --force`); })(); ```
smashah commented 2 years ago

Changelog

🚀 Release 4.36.3 (2022-05-15)