LPgenerator / mattermost_bot

MatterBot - A chat bot for MatterMost (http://www.mattermost.org).
MIT License
211 stars 60 forks source link

upload image with message reply #53

Open ashcrok opened 6 years ago

ashcrok commented 6 years ago

Is there any way to attach an image (or a file in general) when replying to a message?

SharathChandraSreenidhi commented 6 years ago

In the plugins message.reply add image URL

@respond_to('hello$', re.IGNORECASE) def hello_reply(message): message.reply('Image url hello sender!')

ashcrok commented 6 years ago

Yes, that works fine. But I don't want to send the image as an URL, but as an attachment: file comes from local machine.