为了账号安全,请及时绑定邮箱和手机立即绑定

使用 twilio 向手机发送短信

使用 twilio 向手机发送短信

C#
万千封印 2021-06-30 16:00:55
我正在尝试向手机发送短信。有人能告诉我为什么我的退货声明不起作用吗?如果我在 return 语句中只写字符串消息,那么它会显示该消息,但如果我使用下面提到的 return 语句,它就不起作用。有什么建议么?using System;using System.Collections.Generic;using System.Web.Mvc;using Twilio;using Twilio.AspNet.Mvc;using Twilio.Rest.Api.V2010.Account;using Twilio.Types;namespace TwilioSendSMS.Controllers{    public class SMSController : TwilioController    {        // GET: SMS ----- outbound----        public ActionResult SendSms()        {            // Find your Account Sid and Auth Token at twilio.com/user/account            const string accountSid = "ACxxxxxxxxx";            const string authToken = "71xxxxxxxxxx";            // Initialize the Twilio client            TwilioClient.Init(accountSid, authToken);            // make an associative array of people we know, indexed by phone number            var people = new Dictionary<string, string>() {                {"+18180000000", "Kim"},                {"+14401112222", "Raj"}            };            // Iterate over all our friends            foreach (var person in people)            {                // Send a new outgoing SMS by POSTing to the Messages resource                MessageResource.Create(                    from: new PhoneNumber("+15005550006"), // From number, must be an SMS-enabled Twilio number                    to: new PhoneNumber(person.Key), // To number, if using Sandbox see note above                                                     // Message content                    body: $"Hey {person.Value} Party is at 6PM! Don't forget to bring gift.");            }            //return Content($"Message has been sent!");            return Content($"Sent message to {person.Value}");        }    }}
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 240 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信