相关问题
- Outlook Object Model - Hooking to the Conversation
- Analyzing Outlook HANG dump (with GoogleCalendarSy
- My email signature will not appear when generating
- Setting width of Office add-in task pane
- Microsoft Outlook Send and Email Automation C#
相关文章
- .NET AutoCAD二次开发 获取dwg图形坐标
- C# 调用outlook发送邮件获取邮件签名
- Outlook SMTPClient server error 5.3.4 5.2.0
- How to Embed Image in Outlook Signature?
- Save content of Email body in outlook to a file
- How to reference the mail which triggered the outl
- 在Arcengine开发中进行重分类时,程序自动退出,
- Keep Outlook mailItem property (internet header) f
/// <summary>
/// 获取运单号
/// </summary>
public List<string> GetMailItem()
{
List<string> Hawbs = new List<string>();
//Outlook._Application oApp = new Outlook.Application();
Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();
if (oApp.ActiveExplorer().Selection.Count > 0)
{
Object selObject = oApp.ActiveExplorer().Selection[1];