我正在使用Koolwired.Imap来检索附件。以下是我编写的代码。
使用K = Koolwired.Imap;
public void GetAttachmentsTest(string thread, string selectFolder, string fileName)
{
K.ImapConnect connect = new K.ImapConnect(Global.host);
K.ImapCommand command = new K.ImapCommand(connect);
K.ImapAuthenticate auth = new K.ImapAuthenticate(connect, Global.username, Global.password);
connect.Open();
auth.Login();
K.ImapMailbox mailBox = command.Select(Global.inbox);
mailBox = command.Fetch(mailBox);
K.ImapMailboxMessage mbstructure = new K.ImapMailboxMessage();
while (true)
{
try
{
int mailCount = mailBox.Messages.Count;
if (mailCount == 0)
{
Console.WriteLine("no more emails");
break;
}
for (int i = 0; i < mailCount; ++i)
{
mbstructure = mailBox.Messages[mailCount - 1];
mbstructure = command.FetchBodyStructure(mbstructure);
for (int j = 0; j < mbstructure.BodyParts.Count; ++j)
{
if (mbstructure.BodyParts[j].Attachment)
{
//Attachment
command.FetchBodyPart(mbstructure, mbstructure.BodyParts.IndexOf(mbstructure.BodyParts[j]));
//Write Binary File
string tempPath = Path.GetTempPath();
FileStream fs = new FileStream(tempPath + mbstructure.BodyParts[j].FileName, FileMode.Create);
int length = Convert.ToInt32(mbstructure.BodyParts[j].DataBinary.Length);
fs.Write(mbstructure.BodyParts[j].DataBinary, 0,length);
fs.Flush();
fs.Close();
}
}
}
}
catch (Exception ex)
{
Console.WriteLine("T1 " + ex.Message);
Console.WriteLine("T1 " + ex.StackTrace);
if (ex.InnerException != null)
Console.WriteLine("T1 " + ex.InnerException.Message);
}
}
}
我在声明中收到错误:
int length = Convert.ToInt32(mbstructure.BodyParts [j] .DataBinary.Length);
和
fs.Write(mbstructure.BodyParts [j] .DataBinary,0,length);
,错误是:
输入不是有效的Base-64字符串,因为它包含非基本64个字符,两个以上的填充字符或填充字符中的非法字符。
如果只有一个附件,上面的代码会显示在显示的行上。
如果有多个附件:
然后代码在行
分解mbstructure = command.FetchBodyStructure(mbstructure);
,错误是:
无效的格式无法解析正文部分标题。
我很接近让这项任务得到照顾。任何人都可以帮助我。
我还想知道在检索电子邮件后如何删除它们。
感谢。
答案 0 :(得分:0)
我遇到了同样的问题 如果有人关心,我解决了它从codeplex下载库的最新源代码。 编译完成后,无需更改。看起来他们已经修好了。
同样要删除电子邮件,只需将其标记为删除: command.SetDeleted(n,true); // - &GT;其中n是消息号。
如果是IMAP连接,实际上您必须删除已删除的邮件以完成删除。
command.Expunge();
希望它有所帮助。