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:[email protected]&subject=Date Selected :+datepicker.value+");
await Windows.System.Launcher.LaunchUriAsync(mailto);
AFAIK you cant disable the recipient, subject or body of an email.
If you want to detect an edit, then you can add a checksum to the body.