基于网络的移动应用程序可以向各种手机发送短信警报吗?

发布于 2024-11-19 16:02:36 字数 94 浏览 1 评论 0原文

我们有一个日历安排应用程序,需要能够向手机发送短信。我不知道如何开始。该应用程序是一个在 Lamp Stack 上使用 jQuery Mobile 制作的 Web 应用程序。

We have a calendar scheduling app that needs to be able to send SMS text messages to cell phones. I am not sure how to begin on this. The app is a web app made using jQuery Mobile on a Lamp Stack.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

像你 2024-11-26 16:02:36

我以前曾使用 Twilio 来处理类似的事情。这些文档位于此处,并且它们有一个 PHP 库此处

您可以设置一个 Twilio 帐户,然后当您的应用程序想要发送 SMS 时,它会调用服务器上的 PHP 处理程序,将请求发送到 Twilio。对于我去年构建的设备监控应用程序来说效果很好。

I've used Twilio for stuff like this before. The docs are here and they have a PHP library here.

You can setup a Twilio account, and then when your app wants to send an SMS it calls a PHP handler on your server that sends the request to Twilio. Works quite well for an equipment monitoring application I built last year.

霞映澄塘 2024-11-26 16:02:36

如果您可以使用 LAMP 堆栈实现 SMS 网关,那么您就可以实现它。 Web 只是它的前端。

if you can implement a SMS gateway using LAMP stack you can implement it. Web would be just front end for it.

时光暖心i 2024-11-26 16:02:36

我以前通过电子邮件发送过短信。已经过去几年了,但上次我这样做时,我只是使用了这些电子邮件后缀:

T-Mobile: [email protected]
Virgin Mobile: [email protected]
Cingular: [email protected]
Sprint: [email protected]
Verizon: [email protected]
Nextel: [email protected]

where phonenumber = your 10 digit phone number

I've sent text messages by way of email before. It's been a few years but last time I did it I just used these email suffix's:

T-Mobile: [email protected]
Virgin Mobile: [email protected]
Cingular: [email protected]
Sprint: [email protected]
Verizon: [email protected]
Nextel: [email protected]

where phonenumber = your 10 digit phone number
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文