AbpBoilerplate.Sms 0.1.4

dotnet add package AbpBoilerplate.Sms --version 0.1.4
NuGet\Install-Package AbpBoilerplate.Sms -Version 0.1.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AbpBoilerplate.Sms" Version="0.1.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AbpBoilerplate.Sms --version 0.1.4
#r "nuget: AbpBoilerplate.Sms, 0.1.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AbpBoilerplate.Sms as a Cake Addin
#addin nuget:?package=AbpBoilerplate.Sms&version=0.1.4

// Install AbpBoilerplate.Sms as a Cake Tool
#tool nuget:?package=AbpBoilerplate.Sms&version=0.1.4

Sms

适用于AbpBoilerplate的短信服务(Short Message Service,SMS)模块,通过简单配置即可使用,仅更改一处代码即可切换短信服务提供商。

Aliyun.Sms由阿里云Sms提供服务(https://www.aliyun.com/product/sms)

TencentCloud.Sms由腾讯云Sms提供服务(https://cloud.tencent.com/product/sms)

快速开始

使用阿里云Sms服务提供商

在项目中引用AbpBoilerplate.Aliyun.Sms

dotnet add package AbpBoilerplate.Aliyun.Sms

添加AliyunSmsModule模块依赖

[DependsOn(typeof(AliyunSmsModule))]
public class CoreModule : AbpModule

appsettings.json配置文件中,添加服务相关配置

"AliyunSms": {
    "RegionId": "cn-hangzhou",
    "AccessKey": "",
    "AccessKeySecret": ""
}
...

使用腾讯云Sms服务提供商

在项目中引用AbpBoilerplate.TencentCloud.Sms

dotnet add package AbpBoilerplate.TencentCloud.Sms

添加TencentCloudSmsModule模块依赖

[DependsOn(typeof(TencentCloudSmsModule))]
public class CoreModule : AbpModule

appsettings.json配置文件中,添加服务相关配置

"TencentCloudSms": {
    "SmsSdkAppId": "",
    "SecretId": "",
    "SecretKey": ""
}
...

使用帮助

在Service层中注入ISmsService服务即可

发送短信示例

public class CaptchaManager : DomainService
{
    private readonly ISmsService smsService;

    public CaptchaManager(ISmsService smsService)
    {
        this.smsService=smsService;
    }

    public async Task SendCaptchaAsync(string phoneNumber)
    {

        var captcha = CommonHelper.GetRandomCaptchaNumber();
        var model = new SendSmsRequest();
        model.PhoneNumbers= new string[] { phoneNumber };
        model.SignName="MatoApp";   //阿里云或腾讯云后台签名管理中设置应用名称
        model.TemplateCode="SMS_255330989";  //阿里云或腾讯云后台模板管理中设置模板
        model.TemplateParam="{'code':'"+captcha+"'}";
        await smsService.SendSmsAsync(model);
    }
}

<b>注意!不同服务商所传参数有可能不同,如腾讯的短信模板参数为字符串数组,而阿里云为键值对</b>

//for aliyun
model.TemplateParam= JsonConvert.SerializeObject(new { code = captcha });

//for tencent-cloud
model.TemplateParam= JsonConvert.SerializeObject(new string[] {captcha});

作者信息

作者:林小

邮箱:jevonsflash@qq.com

License

The MIT License (MIT)

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on AbpBoilerplate.Sms:

Package Downloads
AbpBoilerplate.Aliyun.Sms

Package Description

AbpBoilerplate.TencentCloud.Sms

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.4 443 4/13/2023
0.1.3 582 11/1/2022
0.1.2 688 10/27/2022