GithubHelp home page GithubHelp logo

Comments (3)

DinoLeung avatar DinoLeung commented on August 17, 2024 3

Thanks @HeySreelal for providing a working solution for this request. It's good to see the community has started to grow and people are helping each other out within the user group. But keep in mind that GitHub issue is meant for submitting bug reports/feature requests, for general help or other discussions GitHub discussions is a more suitable place.

from teledart.

HeySreelal avatar HeySreelal commented on August 17, 2024 2

You can already use the TeleDart.sendMessage method to send messages to a particular user. The only condition is the user has to be subscribed earlier (Telegram Bots can't initiate a conversation with a user).

For example, let's say you're building a weather reporting bot, and when new weather data is available you can send a message to subscribers with the sendMessage method.

void sendWeatherUpdate() async {
  // You'll have to store the subscriber's chat_id on a dedicated database.
  var userId = "<USER'S TELEGRAM ID>";

  // Get the weather update from your weather API or the content you want to send to the user.
  var content =
      "In the north of the country, it's very windy and cold. There is a chance of some rain too, so don't leave home without your umbrella!";

  // Send the message to the user
  await teleDart.sendMessage(userId, content);

  print("Weather update is sent");
}

Hope this helps :)
If you got any further doubts or questions don't be hesitated to ask away.

from teledart.

PavieOlivier avatar PavieOlivier commented on August 17, 2024

Thanks a lot :)
This will be very useful

from teledart.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.