修改短信模板签名

This commit is contained in:
“wanyongkang”
2025-05-15 10:25:54 +08:00
parent 4b1b75285d
commit c9c8386da5
4 changed files with 6 additions and 6 deletions

View File

@@ -116,11 +116,11 @@ namespace Hncore.Pass.Vpn.Job
if (userInfo != null && RegexPattern.IsMobile(userInfo.Phone))
{
if(tip=="今天过期"){
ret = AliSmsService.Send("SMS_482845094", new { date = account.EndTime.Value.ToString("yyyy-MM-dd hh:mm:ss") }, "聚IP商城", userInfo.Phone);
ret = AliSmsService.Send("SMS_482845094", new { date = account.EndTime.Value.ToString("yyyy-MM-dd hh:mm:ss") }, "河南华连网络科技", userInfo.Phone);
} else if(tip=="还有一天过期"){
ret = AliSmsService.Send("SMS_482865093", new { date = account.EndTime.Value.ToString("yyyy-MM-dd hh:mm:ss") }, "聚IP商城", userInfo.Phone);
ret = AliSmsService.Send("SMS_482865093", new { date = account.EndTime.Value.ToString("yyyy-MM-dd hh:mm:ss") }, "河南华连网络科技", userInfo.Phone);
} else {
ret = AliSmsService.Send("SMS_482965075", new { date = account.EndTime.Value.ToString("yyyy-MM-dd hh:mm:ss") }, "聚IP", userInfo.Phone);
ret = AliSmsService.Send("SMS_482965075", new { date = account.EndTime.Value.ToString("yyyy-MM-dd hh:mm:ss") }, "河南华连网络科技", userInfo.Phone);
}
// var ret = AliSmsService.Send("SMS_193505090", new { date = account.EndTime.Value.ToString("yyyy-MM-dd hh:mm:ss") }, "聚IP商城", userInfo.Phone);
}