简体   繁体   English

我们如何将实时电子邮件发送到Windows Phone

[英]How can We Get Live Emails to Windows Phone

I am trying to Get My live Emails to My wp App 我正在尝试将实时电子邮件发送到我的wp应用程序

Is it Possibly to get Emails into our App, Now i am Getting Email Address and Date Of Birth and Some Other But Not getting Email's 是否有可能使电子邮件进入我们的应用程序,现在我正在获取电子邮件地址和出生日期以及其他一些信息,但没有收到电子邮件

My Xaml Code is Like this 我的Xaml代码是这样的

<live:SignInButton ClientId="000000004C0FWD99" Scopes="wl.basic wl.offline_access wl.signin wl.contacts_birthday wl.emails" Branding="Windows" TextType="Login"  d:LayoutOverrides="VerticalAlignment" SessionChanged="SignInButton_SessionChanged" />

C# C#

private void SignInButton_SessionChanged(object sender, Microsoft.Live.Controls.LiveConnectSessionChangedEventArgs e)
    {
        if (e != null && e.Session != null && e.Status == LiveConnectSessionStatus.Connected)
        {
            this.liveClient = new LiveConnectClient(e.Session);
            Session = e.Session;
            this.LoginIn();

        }
        else
            this.GetUserProfile();

    }

    private void GetUserProfile()
    {
        LiveConnectClient clientGetMe = new LiveConnectClient(Session);
        clientGetMe.GetCompleted += new EventHandler<LiveOperationCompletedEventArgs>(clientGetMe_GetCompleted);
        clientGetMe.GetAsync("me", null);

        LiveConnectClient clientGetPicture = new LiveConnectClient(Session);
        clientGetPicture.GetCompleted += new EventHandler<LiveOperationCompletedEventArgs>(clientGetPicture_GetCompleted);
        clientGetPicture.GetAsync("me/picture");

    }

How can I get Email's with with Subject, From Address and Mail Content 如何获得带有主题,发件人地址和邮件内容的电子邮件

is it Possibly 可能吗

It's not possible. 这是不可能的。 Only interaction with contacts and calendars is possible. 只能与联系人和日历进行交互。

You can use the Live Connect APIs to do the following things in Hotmail: 您可以使用Live Connect API在Hotmail中执行以下操作:

  • Create new contacts, and read existing ones, in a user's contacts list. 在用户的联系人列表中创建新的联系人,并阅读现有的联系人。
  • Create, read, update, and delete a user's calendars and the calendars' associated events. 创建,读取,更新和删除用户的日历以及日历的关联事件。
  • Subscribe a user to a public calendar, such as a list of holidays. 为用户订阅公共日历,例如假期列表。
  • Use the friend finder feature to discover whether any of a users' contacts are also registered users of your website. 使用好友查找器功能可以发现用户的任何联系人是否也是您网站的注册用户。

From: Live SDK developer guide 来自: Live SDK开发人员指南

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM