如何通过laravel发送短信通知

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何通过laravel发送短信通知相关的知识,希望对你有一定的参考价值。

我有付费的批量短信面板,但没有设置如何通过laravel项目发送短信后客户购买产品。任何人都请帮助我

API URL(GET&POST):http://sms.natoreit.com/smsapi?api_key=(APIKEY)&type=text&contacts=(NUMBER)&senderid=(Approved发件人ID)&msg =(消息内容)

路线


  type : "post",
  url : "http://sms.natoreit.com/smsapi",
  data : 
    "api_key" : "your api key",
    "senderid" : "sender id",
    "type" : "content type",
    "scheduledDateTime" : "schedule date time",
    "msg" : "your message",
    "contacts" : "88017xxxxxxxx+88018xxxxxxxx"
  

Route :: post('/ order / confirm','WelcomeController @ order_confirm')-> name('order_confirm');

公共函数order_confirm($ id)

????????????????????????????

需要通过SMS发送客户电话号码

答案

您可以使用Laravel SMS API plugin在Laravel中轻松发送短信。

您需要在config/sms-api.php中定义您的SMS网关配置。

完成后,您可以将其用作:

smsapi()->gateway('GATEWAY_NAME')->sendMessage("TO", "Message");

以上是关于如何通过laravel发送短信通知的主要内容,如果未能解决你的问题,请参考以下文章

如何通过 Android 应用向用户发送短信通知

Laravel 5.3 通知与可邮寄

laravel5异常及时通知

阻止发送 Laravel 通知

如何从 iPhone 向蓝牙 LE 设备发送电子邮件、短信通知?

通过第三方接口发送短信验证码/短信通知