laravel如何发送短信通知

时间:2019-11-07 13:02:31

标签: notifications sms

我有付费的批量短信面板,但没有设置如何通过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)

{

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

}

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

1 个答案:

答案 0 :(得分:0)

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

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

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

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