2021与蓝度共同重构项目,服务端
chenjiantian
2021-11-24 6bdb5dda11b8723ddc20a37b9cbcc1e1fdace13a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.sandu.common.sms;
 
/**
 * @author chenjiantian
 * @date 2021/9/27 15:47
 */
public interface ISmsSender {
 
 
 
    /**
     * 通过短信模版发送短信息
     *
     * @param phone      接收通知的电话号码
     * @param params     通知模版内容里的参数,类似"您的验证码为{1}"中{1}的值
     */
    AliyunSmsResult sendWithTemplate(String phone, String[] params);
}