3

There is an applet which allows to send text messages from telegram to some email. Unfortunately there is a limitation: it only works with text.

I would like to have the same functionality, but for images, video and may be audio. I suppose media content should be attached to the email.

Is there a tool for this task? If no, what is the easiest way to implement it?

doubts
  • 1,763
  • 2
  • 12
  • 19

1 Answers1

0

You need split this idea to a few and search for each of following topics:

  • echo bot using python-telegram-bot
  • python-telegram-bot and Telegram object types (photo, video, etc.)
  • how to send email using python and SMTP
  • how to add attachments email using python

After that you'll be able to understand what else is missing.

wowkin2
  • 5,895
  • 5
  • 23
  • 66