gpt4 book ai didi

c#-4.0 - 如何使用预先填充的附件打开Outlook新邮件窗口

转载 作者:行者123 更新时间:2023-12-03 23:20:59 26 4
gpt4 key购买 nike

当用户单击应用程序中的某些按钮或链接时,我需要打开一个带有预填充附件的新电子邮件窗口。

最佳答案

旧问题,但我也遇到了这个问题,因此这是一个复制粘贴解决方案:

Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook.MailItem oMsg = (Microsoft.Office.Interop.Outlook.MailItem)oApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);

oMsg.Subject = "subject something";
oMsg.BodyFormat = Microsoft.Office.Interop.Outlook.OlBodyFormat.olFormatHTML;
oMsg.HTMLBody = "text body"; //Here comes your body;
oMsg.Attachments.Add("c:/temp/test.txt", Microsoft.Office.Interop.Outlook.OlAttachmentType.olByValue, Type.Missing, Type.Missing);
oMsg.Display(false); //In order to display it in modal inspector change the argument to true


您需要在项目中添加对 Microsoft.Office.Interop.Outlook组件的引用。

关于c#-4.0 - 如何使用预先填充的附件打开Outlook新邮件窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12363079/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com