textlk/textlk-php
最新稳定版本:v2.0.4
Composer 安装命令:
composer require textlk/textlk-php
包简介
PHP SDK for Text.lk - SMS Gateway Sri Lanka
README 文档
README
Text.lk SMS Gateway Sri Lanka - PHP SDK
It is a PHP package that will serve as a gateway to communicate with Text.lk REST APIs.
Installation
composer require textlk/textlk-php
Pure PHP
use TextLK\SMS\TextLKSMSMessage; $textLKSMS = new TextLKSMSMessage(); $textLKSMS ->recipient("94712345678") // Replace with the recipient's phone number. ->message("Hello, this is a test message.") ->senderId("YOUR_SENDER_ID") // (optional) TEXTLK_SMS_SENDER_ID can be added in .env ->apiKey('YOUR_API_KEY_HERE') // (optional) TEXTLK_SMS_API_KEY can be added in .env $textLKSMS->send();
Laravel
public function toTextlk($notifiable) { return (new \TextLK\SMS\TextLKSMSMessage) ->recipient("94712345678") // Replace with the recipient's phone number. ->message('Hello, this is a test message.') ->senderId('YOUR_SENDER_ID') // optional. TEXTLK_SMS_SENDER_ID can be added in .env ->apiKey('YOUR_API_KEY_HERE'); // optional. TEXTLK_SMS_API_KEY can be added in .env }
统计信息
- 总下载量: 234
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-04