Q: Telegram Text Copy and use on browser.
Hey, I’m curious. Could I make an automation that looks for messages from a user twice a day at specific time frames in telegram chat, then copy that coupon code and then maybe also open a browser, login into a site with stored credentials, follow steps to enter code (like a coupon code) into a code box and presses submit?
It would require listening for the code from a user that uses a specific format when announcing the code.

RTILA
Feb 25, 2025A: Hello Tony
This would require few logical approaches as we have the commands to achieve that with RTILA:
1) Create an RTILA Project and enable scheduling for 2 times per day
2) The Automation would project would load that user message history and cycle through all the new messages. So here you need a Google Sheet or a Database to store the ID and time of each message to recognize the new messages and avoid re-scrapping all messages. Or you can go brutal and just scrape all messages every time (this can work if say there are less than 100 new messages per day).
3) When you cycle through the message you can use either a Regex rule to recognize the coupon code if the coupon code has a specific pattern or if it is preceded by the same suffix/prefix texts. otherwise you can just send the text content for each or all message to an Ai to ask it to semantically recognize and extract the discount code for you.
4) Once a discount code is capture then you feed it to the flow that will login and redeem that discount code somewhere
Hope this helps