3 个版本

0.1.2 2021年6月30日
0.1.1 2021年1月22日
0.1.0 2021年1月22日

#11 in #tencent

自定义许可协议

11KB
242 代码行(不含注释)

说明

腾讯云短信发送接口实现

示例

//发送
let response = TencentSms::new(
        "secret_id",
        "secret_key",
        "sdk_app_id",
        "template_id",
        "sign",
        vec![
            String::from("+8612345678912"),
            String::from("+8612345678913"),
        ],
        vec![String::from("1234"), String::from("5678")],
    )
    .send()
    .await;

//检查是否发送成功
    println!(
        "{:#?}",
        response
            .unwrap()
            .check_is_success(String::from("+8612345678912"))
    );

依赖项

~27MB
~559K SLoC