Fork me on GitHub

UWP 调用outlook邮箱反馈

public static async Task FeedbackAsync(string address, string subject, string body)
{
if (address == null)
return;
var mailto = new Uri($"mailto:{address}?subject={subject}&body={body}");
await Launcher.LaunchUriAsync(mailto);
}

 

posted @ 2017-10-02 16:31  猫叔Vincent  阅读(371)  评论(0编辑  收藏  举报