I would like my discord bot to send an image (from a url), but have the url be hidden from the message that is sent in chat. For sending messages, im using a switch statement that only uses the writing after an "!"
case 'happy':
bot.sendMessage({
to: channelID,
message: 'https://pictureexample.jpg'
});
How would I send messages without having the link show in chat?