AbpBoilerplate.Aliyun.Sms 0.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package AbpBoilerplate.Aliyun.Sms --version 0.1.1
NuGet\Install-Package AbpBoilerplate.Aliyun.Sms -Version 0.1.1
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.Aliyun.Sms" Version="0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AbpBoilerplate.Aliyun.Sms --version 0.1.1
#r "nuget: AbpBoilerplate.Aliyun.Sms, 0.1.1"
#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.Aliyun.Sms as a Cake Addin
#addin nuget:?package=AbpBoilerplate.Aliyun.Sms&version=0.1.1

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

Aliyun.Sms

适用于AbpBoilerplate的阿里云短信服务(https://www.aliyun.com/product/sms)

快速开始

在项目中引用AbpBoilerplate.Aliyun.Sms

dotnet add package AbpBoilerplate.Aliyun.Sms

添加AliyunSmsModule模块依赖

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

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

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

使用帮助

在Service层中注入IAliyunSmsService服务即可

发送短信示例

public class CaptchaManager : DomainService
{
    private readonly IAliyunSmsService aliyunSmsService;

    public CaptchaManager(IAliyunSmsService aliyunSmsService)
    {
        this.aliyunSmsService=aliyunSmsService;
    }

    public async Task SendCaptchaAsync(string phoneNumber)
    {

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

查询发送情况示例

public async Task<QuerySendDetailResponse> GetSendDetai(string phoneNumber, DateTime sendDate)
{
    var model = new QuerySendDetailRequest();
    model.PhoneNumbers= phoneNumber;
    model.SendDate=sendDate;          
    var result = await aliyunSmsService.QuerySendDetailsAsync(model);
    return result;
}

作者信息

作者:林小

邮箱: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 is compatible.  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 was computed.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.4 360 4/13/2023
0.1.3 400 11/1/2022
0.1.2 381 10/27/2022
0.1.1 392 10/25/2022
0.1.0 398 10/24/2022