Telegram bot for personal messages
-
The code is already prepared, all that's left is to set up the bot through Bot Father.
-
200 5 1 Good day, ready to create a bot according to your brief, quickly and qualitatively, and will be able to deliver the project to you soon, waiting for your message to discuss one detail.
-
8193 63 1 Good day!
I am ready to help you with the implementation of this project.
I look forward to the opportunity to clarify all the details and start working on it!
-
111 1 0 Maxim, hello!
I suggest creating a Telegram bot based on SendPulse. It is also possible to connect GPT-4o and set up a prompt that will respond to user requests independently, if necessary, you will be able to engage in dialogue on behalf of the bot.
-
5164 210 0 Good day.
I can take on the implementation of your project.
When users write to the bot, it forwards these messages to you. If you reply to a specific message from the bot, the bot will send your response to the sender of the original message.
-
1374 56 0 Good day! There is a ready solution, my own Telegram-CRM with a convenient interface, precisely for this purpose.
Several people can sit in the chat and reply.
-
320 3 1 Hello!
I have a solution ready for you! I have already created a bot almost identical for feedback in a large corporation. I will be very happy to help you!
Looking forward to cooperating with you! Feel free to contact me via direct messages 😉
-
3481 49 2 Congratulations, I develop Telegram bots on NodeJS with over 2 years of experience. Messages will be coming to you on the bot, and you will have the functionality to switch to personal messages or we will make it so that you can reply to messages and they will be forwarded to the user on behalf of the bot (like in the bot from Freelance Hunt).
-
294 2 0 Вітаю! Потрібно більше детальне ТЗ. Від себе можу запропонувати наступне:
1. Команду для перегляду всіх повідомлень від користувача
2. Команду для видалення повідомлень.
3. Команду для відповіді на конкретне повідомлення
4. Команду для відправки шаблонних відповідей
5. Команду для перегляду статистики
6.Команду для встановлення статусу “Не турбувати”
7. Командудля автоматичного відповіді
… Типу такого:
from telegram import Update
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters, CallbackContext
# Словник для зберігання повідомлень
messages = {}
def start(update: Update, context: CallbackContext) -> None:
update.message.reply_text('Привіт! Я ваш бот.')
def echo(update: Update, context: CallbackContext) -> None:
# Зберігаємо повідомлення від користувача
user = update.message.from_user.username
if user not in messages:
messages[user] = []
messages[user].append(update.message)
update.message.reply_text(update.message.text)
def reply(update: Update, context: CallbackContext) -> None:
# Відповідаємо на останнє повідомлення від обраного користувача
user = update.message.from_user.username
if user in messages and messages[user]:
last_message = messages[user][-1]
last_message.reply_text(update.message.text)
else:
update.message.reply_text("Немає повідомлень для відповіді.")
def view_messages(update: Update, context: CallbackContext) -> None:
# Переглядаємо всі повідомлення від користувача
user = update.message.from_user.username
if user in messages:
for message in messages[user]:
update.message.reply_text(message.text)
else:
update.message.reply_text("Немає повідомлень від цього користувача.")
def delete_messages(update: Update, context: CallbackContext) -> None:
# Видаляємо всі повідомлення від користувача
user = update.message.from_user.username
if user in messages:
del messages[user]
update.message.reply_text("Повідомлення видалено.")
else:
update.message.reply_text("Немає повідомлень для видалення.")
def main() -> None:
updater = Updater("TOKEN", use_context=True)
dispatcher = updater.dispatcher
dispatcher.add_handler(CommandHandler("start", start))
dispatcher.add_handler(CommandHandler("reply", reply))
dispatcher.add_handler(CommandHandler("view_messages", view_messages))
dispatcher.add_handler(CommandHandler("delete_messages", delete_messages))
-
276 1 0 Hello, I can create a bot for "support/suggestions". I started doing something similar for myself.
-
157 2 0 Hello, I can implement your bot quickly and qualitatively
I will be happy to help you in private messages
-
4013 106 0 Good day, interested in your project, ready to perform similar tasks. Need to clarify more details about the functionality that should be.
-
9984 117 0 Hello.
I develop Telegram bots in NodeJS. Ready to start. Write me, let's discuss.
-
726 9 1 Good day! Your project looks very promising. Ready to start work and complete it at the highest level.
-
512 3 0 Good day.
Interested in your project.
Would like to discuss cooperation terms and full project brief in private messages.
Write to me, looking forward to collaborating.
Current freelance projects in the category Bot Development
Automation bot for playerok.com
89 USD
1. Main Menu and Monitoring Dashboard screen updated in real-time (or by button): Status of key modules (On/Off). Current tasks: number of pending code/email deliveries from buyers, active orders. Financial summary for the current date (Total amount, net profit considering… Engineering, Bot Development ∙ 3 hours 31 minutes back ∙ 21 proposals |
A simple checkpoint bot needs to be created for the GTA5 server.
56 USD
Operating principle: https://www.youtube.com/watch?v=yTTRQfYSfaY In short, there is a large checkpoint, you stand on it and press the letter "E" (English), 6 small checkpoints appear, and the bot just needs to run and press "E" at the checkpoints. I tried using Python and AHK -… Bot Development ∙ 7 hours 29 minutes back ∙ 7 proposals |
Integration of the analytics system with the Database in Tables
112 USD
The current analytics system needs to be brought to a stable working state. Currently, data from CRM, telephony, and advertising accounts is pulled through Supabase via MSP into Google Sheets, but some processes still require manual control. This needs to be eliminated.1.… AI & Machine Learning, Bot Development ∙ 23 hours 14 minutes back ∙ 28 proposals |
Telegram bot for hiring/searching employees. For job searching.
25 USD
1. General Concept Creation of a Telegram bot for automating recruitment and mutual job searching. The system operates on the principle of active response and mutual confirmation of interest (Double Opt-In). The system includes two roles: Employer (Company Owner) and Worker (Job… Python, Bot Development ∙ 1 day 1 hour back ∙ 82 proposals |
Two-way messaging exchange between CRM Creatio and Telegram
156 USD
Implement a two-way messaging exchange between CRM Creatio and Telegram according to the specifications https://docs.google.com/document/d/1Y8qL2CJwwmVSrJOXfQipoi27t-wkvDx1UmA2-niTtWs/edit?usp=sharing Web Programming, Bot Development ∙ 1 day 13 hours back ∙ 45 proposals |