Channels
Sms
OpenClaw SMS channel plugin (Aliyun + Tencent Cloud)
Install
openclaw plugins install @cyzlmh/openclaw-sms
README
# @cyzlmh/openclaw-sms
SMS channel plugin for OpenClaw with two outbound providers:
- Aliyun SMS (Alibaba Cloud)
- Tencent Cloud SMS
## Install
```bash
openclaw plugins install @cyzlmh/openclaw-sms
```
## Enable
```json5
{
plugins: {
entries: {
sms: { enabled: true },
},
},
}
```
## Configure Aliyun
```json5
{
channels: {
sms: {
provider: "aliyun",
signName: "YourSign",
templateId: "SMS_123456789",
aliyun: {
accessKeyId: "LTAI...",
accessKeySecret: "...",
templateParamName: "content",
},
},
},
}
```
## Configure Tencent
```json5
{
channels: {
sms: {
provider: "tencent",
signName: "YourSign",
templateId: "1234567",
tencent: {
secretId: "AKID...",
secretKey: "...",
sdkAppId: "1400xxxxxx",
region: "ap-guangzhou",
},
},
},
}
```
## Notes
- Target must be E.164 format (example: `+8613812345678`).
- SMS uses provider-side templates.
- This plugin is outbound-only (no inbound SMS webhook).
channels
Comments
Sign in to leave a comment