E-Mails von Windows Phone senden 8.1

Ich möchte eine E-Mail von der Windows Phone 8.1-App senden. E-Mail-Aufgabe "Verfassen" funktioniert nicht. Ich habe es versucht

EmailRecipient sendTo = new EmailRecipient()
{
    Address = "[email protected]"
};

//generate mail object
EmailMessage mail = new EmailMessage();
mail.Subject = "Feedback";


//add recipients to the mail object
mail.To.Add(sendTo);
//mail.Bcc.Add(sendTo);
//mail.CC.Add(sendTo);

//open the share contract with Mail only:
await EmailManager.ShowComposeNewEmailAsync(mail);

Dies führt zu einem Fehler im Emulator:

Kann nicht teilen
Es sind keine Apps zum Teilen vorhanden.

Antworten auf die Frage(3)

Ihre Antwort auf die Frage