官网5年前提交的sdk先已不能使用,特更新了一个
This crate offers:
Features:
将所需版本的crate放入dependencies的部分 Cargo.toml
:
toml
[dependencies]
yunpian-sdk = "*"
```rust
async fn main() { let apikey = "云片apikey"; let sms = yunpiansdk::Yunpian::new(apikey); let text = "【安妮蝶网络】您的验证码为1024,10分钟内有效,请勿泄露。如非本人操作,请忽略本短信。"; let phone = "18610996705"; match sms.single_send(text, phone).await{ Ok(b) => { if b == true { println!("发送成功") }else{ print!("发送失败") } }, Err(e) => { println!("err: {}", e) } }; }
```
Please refer to the crate docs
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.