#send image and pdf using postman

7 messages Β· Page 1 of 1 (latest)

chilly hound
#

Can i send image and pdf using postman gave any code or video or site πŸ˜΅β€πŸ’«
i can send text message by postman i find that but send image and pdf i can't please help me ☺️

ember rain
chilly hound
ember rain
#
const { MessageMedia } = require('whatsapp-web.js');
const pdf = await MessageMedia.fromUrl('http:\\www.teste.com\teste.pdf');
await client.sendMessage('55119912345678@c.us', pdf);
#
const { MessageMedia } = require('whatsapp-web.js');
const pdf = await MessageMedia.fromFilePath(pathFile);
await client.sendMessage('55119912345678@c.us', pdf);
#

Two ways to do it