Search code examples
signalrsmsmanager

How to send SMS to mobile phone using SignalR in MVC?


How start a project SMS to send message to local mobile phones using SignalR technology. Any help in this regards will be appreciated.


Solution

  • SignalR is used to send data via WebSockets. What you want to achieve is completely different.

    You could use SignalR to for example, send notifications to your phone to an app but SMS is not a responsibility of SignalR.

    You can read more about SignalR here.