获取Outlook电子邮件正文

时间:2013-11-13 21:05:07

标签: c# outlook

我正在尝试创建一个函数来获取具有给定搜索条件的电子邮件正文。当我从邮箱中获取项目并尝试获取正文时,它只会写入正文的一部分。我想要身体的所有文字。我怎样才能做到这一点?这就是我到目前为止所做的:

        Outlook.Application myApp = new Outlook.Application();
        const string PR_HAS_ATTACH = "http://schemas.microsoft.com/mapi/proptag/0x0E1B000B";

        // Obtain Inbox
        Outlook.Folder folder = myApp.Session.GetDefaultFolder(OlDefaultFolders.olFolderInbox) as Microsoft.Office.Interop.Outlook.Folder;


        Outlook.Table table = folder.GetTable(Microsoft.Office.Interop.Outlook.OlTableContents.olUserItems);

        // Remove default columns
        table.Columns.RemoveAll();

        // Add using built-in name
        table.Columns.Add("Subject");
        table.Columns.Add("ReceivedTime");
        table.Sort("ReceivedTime", Microsoft.Office.Interop.Outlook.OlSortOrder.olDescending);

        // Add using namespace
        // Date received 
        table.Columns.Add("urn:schemas:httpmail:textdescription");

        while (!table.EndOfTable)
        {
            Outlook.Row row = table.GetNextRow();
            if (row["Subject"].ToString().ToLower().Contains(subject.Text.ToLower()) && row["ReceivedTime"].ToString().Contains(cellCreationDate))
            {                    
                body.Text = row["urn:schemas:httpmail:textdescription"].ToString();
            }
        }

1 个答案:

答案 0 :(得分:0)

你不能使用Outlook.Table然后使用urn:shcemas:httpmail.textdescription来获取整个正文。 textdescription仅返回正文的前255个字符,如http://msdn.microsoft.com/en-us/library/office/ff861580.aspx所示。

这是另一种选择。

// change this in your code
body.Text = row["urn:schemas:httpmail:textdescription"].ToString();

// To this
Microsoft.Office.Interop.Outlook.MailItem mailItem =
                             myApp.Session.GetItemFromID(row["EntryID"]);
body.Text = mailItem.Body;