#send image and pdf using postman
7 messages Β· Page 1 of 1 (latest)
I mean in the library of wwebjs How can I send pdf or a image
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