I would like to add a non-editable text block
with some text in it to mail body
.
Is it possible to do so as shown in this sample project.
If so how do I add the non-editable text to the body of mail
So far to send the mail I have this code provided:
var mailto = new Uri("mailto:?to=recipient@example.com&subject=The subject of an email&body=Hello from a Windows 8 Metro app.");
await Windows.System.Launcher.LaunchUriAsync(mailto);