我想使用C#访问我的Outlook发送文件夹并将邮件移动到我的PST中名为Archive的文件夹中。这是我正在使用的代码,但是我遇到了多个编译错误。这里有更多编码经验的人知道如何实现这个目标吗?
static void MoveMe()
{
try
{
_app = new Microsoft.Office.Interop.Outlook.Application();
_ns = _app.GetNamespace("MAPI");
_ns.Logon(null, null, false, false);
Application.ActiveExplorer().Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderOutbox);
Outlook.Items SentMailItems = SentMail.Items;
Outlook.MailItem newEmail = null;
foreach (object collectionItem in SentMailItems)
{
moveMail.Move(Archive);
}
}
catch (System.Runtime.InteropServices.COMException ex)
{
Console.WriteLine(ex.ToString());
}
finally
{
_ns = null;
_app = null;
_inboxFolder = null;
}
}
评论中的错误列表:
Only assignment, call, increment, decrement, and new object expressions can be used as a statement
The type or namespace name 'Emails' could not be found (are you missing a using directive or an assembly reference?)
The name 'A_Sent' does not exist in the current context
The name 'moveMail' does not exist in the current context
The name 'SentMail' does not exist in the current context
答案 0 :(得分:7)
这是一个如何获取源文件夹(SentItems)并将其移动到PST(存档)的示例。
using Outlook = Microsoft.Office.Interop.Outlook;
public void MoveMyEmails()
{
//set up variables
Outlook.Application oApp = null;
Outlook.MAPIFolder oSource = null;
Outlook.MAPIFolder oTarget = null;
try
{
//instantiate variables
oApp = new Outlook.Application();
oSource = oApp.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderSentMail);
oTarget = oApp.Session.Folders["Archive"];
//loop through the folders items
for (int i = oSource.Items.Count; i > 0; i--)
{
move the item
oSource.Items[i].Move(oTarget);
}
}
catch (Exception e)
{
//handle exception
}
//release objects
if (oTarget != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(oTarget);
GC.WaitForPendingFinalizers();
GC.Collect();
}
if (oSource != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(oSource);
GC.WaitForPendingFinalizers();
GC.Collect();
}
if (oApp != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(oApp);
GC.WaitForPendingFinalizers();
GC.Collect();
}
}