我想在 non-editable text block
中添加 mail body
及其中的一些文字。
是否可以按照此sample项目中的说明执行此操作。
如果是这样,我如何将不可编辑的文本添加到邮件正文中
到目前为止发送邮件我提供了这段代码:
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);
答案 0 :(得分:0)
如何创建(只读)文本的图像并将其添加到电子邮件中。
&attachment="/path/file.jpg"
我肯定编码了更糟糕的人;)
或者也许使用mime ......
创建像这样的东西:
Bitmap bm = new Bitmap(100, 100);
using (Graphics g = Graphics.FromImage(bm))
g.DrawString("some text", SystemFonts.DefaultFont, Brushes.Black, 0, 0);
bm.Save( .... );