sms

Crates.iosms
lib.rssms
version0.1.9
sourcesrc
created_at2021-04-16 11:49:25.427126
updated_at2024-08-14 01:34:07.615421
descriptionRust sms sdk
homepage
repositoryhttps://github.com/EchoRust/SMS
max_upload_size
id385276
size8,954
Leon (LyonRust)

documentation

README

SMS

Rust Send SMS SDK

English | 简体中文

Use Rust to connect to the SMS interface of the cloud platform, and the following cloud platform interfaces have been implemented

  • aliyun
use sms::aliyun::Aliyun;

let aliyun = Aliyun::new("accessKeyId", "accessSecret");
let resp = aliyun.send_sms("18888888888", "登录验证", "SMS_5003224", "验证码1234").await.unwarp();

println("{:?}", resp);

License

MIT

Copyright (c) 2020-present, Yang (Echo) Li

Commit count: 21

cargo fmt