8
我需要從郵件中獲取並保存附件,但是使用下面的代碼會返回所有附件 - 這意味着它還會返回嵌入的圖像,如發件人的簽名以及圖像的徽標。我如何區分真正的附件與嵌入式圖像?我從論壇上看到很多,但對我而言仍然不清楚。vsto +區分附件
public static void SaveData(MailItem currentMailItem)
{
if (currentMailItem != null)
{
if (currentMailItem.Attachments.Count > 0)
{
for (int i = 1; i <= currentMailItem.Attachments.Count; i++)
{
currentMailItem.Attachments[i].SaveAsFile(@"C:\TestFileSave\" + currentMailItem.Attachments[i].FileName);
}
}
}
}
非常感謝你!有用! – Liz