Can my Telegram bot be used to send SMS to my own number?

I’ve been reviewing the Telegram API documentation and noticed a method called auth.sendSms. However, I’m not completely certain if this functionality is designed to send SMS messages directly to my personal number. Could anyone clarify whether it’s feasible to use Telegram’s API for sending an SMS to myself? I am open to solutions in any programming language, such as PHP or Ruby. Your insights and any sample implementations would be greatly appreciated.

In my experiments, I’ve found that the auth.sendSms method is specifically tied to Telegram’s built-in authentication process rather than functioning as a universal SMS gateway. It is designed to validate user accounts during registration or login and not for dispatching custom SMS messages to arbitrary numbers. This means that, in practice, you won’t be able to repurpose it to send SMS messages to your own number on demand. For sending SMS messages programmatically, using dedicated services like Twilio or similar platforms is the recommended approach.

Reviewing my own trials and the available documentation, it is evident that auth.sendSms is not meant for general-purpose SMS dispatch. Instead, it functions as part of Telegram’s internal verification process, primarily ensuring secure authentication. It is not suited for sending custom SMS messages to arbitrary numbers, including your own. In practice, if SMS communication is necessary for your application, leveraging dedicated services such as Twilio or Nexmo will provide the required capabilities and reliability.