阿里云短信发送

    using Aliyun.Acs.Core;
    using Aliyun.Acs.Core.Exceptions;
    using Aliyun.Acs.Core.Profile;
    using Aliyun.Acs.Sms.Model.V20160927;
    namespace ConsoleApp
    {
        class Program
        {
            static void Main(string[] args)
            {      
                IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", "");
                IAcsClient client = new DefaultAcsClient(profile);
                SingleSendSmsRequest request = new SingleSendSmsRequest();
                try {
                    request.SignName = "管理控制台中配置的短信签名(状态必须是验证通过)";
                    request.TemplateCode = "管理控制台中配置的审核通过的短信模板的模板CODE(状态必须是验证通过)";
                    request.RecNum = "接收号码,多个号码可以逗号分隔";
                    request.ParamString = "短信模板中的变量;数字需要转换为字符串;个人用户每个变量长度必须小于15个字符。";
                    SingleSendSmsResponse httpResponse = client.GetAcsResponse(request);
                } catch (ServerException e) {
                    e.printStackTrace();
                }
                catch (ClientException e) {
                    e.printStackTrace();
                }
            }
        }

    }

在Nuget里面可以找到 不过4.5版本安装不下来,我是直接引用的dll文件

sdk下载地址:http://aliyundm.oss-cn-hangzhou.aliyuncs.com/example/aliyun-net-sdk-smsV1.zip


本篇内容来源于 博客园地址:http://www.cnblogs.com/ink-heart/p/6001094.html

你可能感兴趣的:(Asp.NET,C#)