【发布时间】:2015-01-29 06:40:37
【问题描述】:
有没有办法以编程方式将 Outlook 邮件项从 Outlook 邮件项列表嵌入到 Word 文档中。??
我正在努力实现这样的目标
Word.Application wdApp = new Word.Application();
Word.Document wdDoc = wdApp.Documents.Add(ref missing, ref missing, ref missing,
ref missing);
foreach(Outlook.MailItem olMail in mailAttachments)
{
//Paste/embbed this olMail into the word document
}
【问题讨论】:
标签: c# ms-word outlook automation