Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hyancat/aliyun-sms-php

阿里云 SMS (Deprecated!!!)
https://github.com/hyancat/aliyun-sms-php

aliyun-sms-php deprecated php sms

Last synced: 3 months ago
JSON representation

阿里云 SMS (Deprecated!!!)

Awesome Lists containing this project

README

        

# aliyun-sms-php

阿里云短信服务 for PHP.

> ***Deprecated!!!***
>
> *Use https://github.com/HyanCat/short-messenger instead.*

## Installation

composer require hyancat/aliyun-sms-php

## Usage

### In a general way

```php
$sms = new SmsService('[TEST_APP_ID]', '[TEST_APP_KEY]');
$sms->send('[PHONE_NUMBER]', function ($message) {
$message->template('[TEMPLATE_NAME]')->with([
'code' => '我是验证码',
'product' => '我是产品',
])->signName('我是签名');
});
```

### For laravel or lumen

Todo...

## License

The source code is under [MIT License](https://github.com/HyanCat/aliyun-sms-php/blob/master/LICENSE).