Disable body of mail in WINRT application
问题 I have a date picker and time picker in my app and I'm trying to send mail as described here which contains the date as well as the time in the body of the mail. So, Now my question is how to disable the body part of the email as the user shouldn't edit the date or time once it is selected from app. What's the point of security in this ? Code: var mailto = new Uri("mailto:?to=me@mysite.com&subject=Date Selected :+datepicker.value+"); await Windows.System.Launcher.LaunchUriAsync(mailto); 回答1: