Home PHP Libraries Other libraries Alibaba Cloud SMS Service singleSendSmsPHP library
Alibaba Cloud SMS Service singleSendSmsPHP library
<?php
namespace com;
class Sms{
//默认配置
protected $appcode;
protected $host="http://sms.market.alicloudapi.com";
protected $path = "/singleSendSms";
public function __construct() {
$this->appcode = config('sms_appcode');//读取配置的appcode
}
public function send($phoneNo,$verify_code){
$host = $this->host;
$path = $this->path;
$method = "GET";
$appcode = $this->appcode;
$headers = array();
array_push($headers, "Authorization:APPCODE " . $appcode);
$phone = $phoneNo; //目标手机号,多条记录可以英文逗号分隔
$paramstring = '{"verify_code":"'.$verify_code.'"}';//这是验证码,根据自己的短信模板来设置
$paramstring = urlencode($paramstring);
$querys = "ParamString={$paramstring}&RecNum={$phone}&SignName=XXXX&TemplateCode=SMS_67123456";
//SignName 签名信息 TemplateCode 模板code 购买阿里云的短信服务这些都在控制台得到
$bodys = "";

The recent project uses the Alibaba Cloud SMS service. I wrote a class based on the PHP example in the SMS service in the Alibaba Cloud market. Send SMS verification code.

Disclaimer

All resources on this site are contributed by netizens or reprinted by major download sites. Please check the integrity of the software yourself! All resources on this site are for learning reference only. Please do not use them for commercial purposes. Otherwise, you will be responsible for all consequences! If there is any infringement, please contact us to delete it. Contact information: admin@php.cn

Related Article

Detailed explanation of Alibaba Cloud SMS service Detailed explanation of Alibaba Cloud SMS service

17 Jul 2017

Alibaba Cloud SMS supports the principle of use first and pay later, and the price is 4 and a half cents per message. Through the SDK, it can be bound to the website function, and the SMS sending function to realize the response has been unified and upgraded to: message service. Message Service Alibaba Cloud Message Service (MNS) is an efficient, reliable, secure, convenient, and elastically scalable distributed messaging service. MNS can help application developers freely transfer data and notification messages among the distributed components of their applications, and build loosely coupled systems. New SDK download address: Java

How to send Alibaba Cloud PHP SMS SMS service verification code How to send Alibaba Cloud PHP SMS SMS service verification code

08 Feb 2018

This article mainly shares with you how to send verification codes for Alibaba Cloud PHP SMS SMS service. I hope it can help you.

Detailed explanation of how to send verification code for Alibaba Cloud PHP SMS SMS service Detailed explanation of how to send verification code for Alibaba Cloud PHP SMS SMS service

15 Aug 2020

This article mainly introduces the method of sending verification code for Alibaba Cloud PHP SMS SMS service. Friends in need can refer to it.

How to connect to Alibaba Cloud SMS service through PHP to implement SMS notification function How to connect to Alibaba Cloud SMS service through PHP to implement SMS notification function

05 Jul 2023

How to connect to Alibaba Cloud SMS Service through PHP to implement SMS notification function Alibaba Cloud SMS Service is a reliable and efficient SMS sending platform that can help developers implement SMS notification functions in applications. This article will introduce how to use PHP code to connect to Alibaba Cloud SMS service to implement SMS notification function. First, we need to create an AccessKey and AccessSecret for the SMS service on the Alibaba Cloud platform. Then, we can use the SDK library of Alibaba Cloud SMS Service to do it through PHP code

How to use PHP to connect to Alibaba Cloud SMS service to implement marketing SMS sending function How to use PHP to connect to Alibaba Cloud SMS service to implement marketing SMS sending function

06 Jul 2023

How to use PHP to connect to Alibaba Cloud SMS service to implement marketing SMS sending function Introduction: With the advent of the mobile Internet era, SMS, as a fast and efficient communication method, has become one of the important means for merchants to conduct marketing. Alibaba Cloud SMS Service is one of the most well-known SMS platforms in China and provides developers with a rich API. This article will introduce how to use PHP to connect to Alibaba Cloud SMS Service to implement the marketing SMS sending function. 1. Preparation: Register an Alibaba Cloud account and activate the Alibaba Cloud SMS service; configure the local PHP environment

See all articles