我正在使用visual studio express 2012和使用C#和SQLite的WP8 SDK开发一个简单的Windows Phone 8应用程序。我想知道如何使用我的Windows手机使用此应用程序向各种收件人发送短信或电子邮件(我不想通过互联网发送短信) 感谢lotttt:)
答案 0 :(得分:3)
未经用户批准,您无法发送短信或电子邮件(来自系统帐户)。为此,请使用启动器:
电子邮件:使用EmailComposeTask
:How to use the email compose task for Windows Phone
短信:使用SmsComposeTask
:How to use the SMS compose task for Windows Phone
它们都显示弹出窗口并要求用户批准要发送的消息。
答案 1 :(得分:0)
ChatMessage chatMessage = new ChatMessage();
chatMessage.Body = "Text message";
chatMessage.Recipients.Add("phonenumber");
await ChatMessageManager.ShowComposeSmsMessageAsync(chatMessage);
希望有所帮助:)