English 中文(简体)
WinRT: How to email a information to a specific person?
原标题:WinRT: How to email a message to a specific person?

http://slodge.blogspot.co.uk/2008/03/update-on-mvm cross-sqlbits-conference.html” rel=“nofollow”

In this app there are some feature where users can email specific people - e.g. on certain screens they can click buttons to send an email to the conference organisers, to one of the speakers, or to me - the app developer.

I ve look through The WinRT documents onMSDN, and the only treaty I can found which may be related to email is

在WinRT中是否有一些简单的“电子邮件到”方法? 例如,。 EmailComposeTask in WP7?

最佳回答

Here s what I did:

Uri uri = new Uri("mailto:" + emailAddress, UriKind.Absolute);
await Launcher.LaunchUriAsync(uri);

它看着我们,但它是行之有效的。

这使你能够确定电子邮件地址和主题,但不能成为一个完整的超文本机构。

采用股份合同,你可以确定主题和机构,但事实上不是地址。 这一点是有意义的,因为你们都不知道什么内容会与你们分享。 它不是电子邮件,而是博客作者。

问题回答

暂无回答




相关问题
my Java class addUserToTheList() doesn t work

I have the following two classes: import java.io.*; import java.util.*; public class User { public static String nickname; public static String ipAddress; public static ArrayList<...

Portlet Data sharing using liferay and icefaces

I am using liferay 1.8.2 and liferay 5.2. I have many portlets in different war files and I tried the examples in the liferay docs as to how to share data between differenet portlets across multiple ...

Access database sharing strategies

What are the strategies you employ to let multiple people work on an access database? Is it possible to host it online and have its features still functional without having to develop a custom ...

Finding the systems connected in local network from iPhone?

I am developing an application which identifies(find) all the systems connected in same network/LAN to share the data. could please share with me how to identify(find) the systems which are ...

Sharing components in .NET platform

I have an e-commerce website that is already up and running for some time. It s built on .NET 3.5. So far, so good. The "problem" is that now I need to start sharing functionality (products list, ...

热门标签