gpt4 book ai didi

c# - MailKit Imap 获取邮件的已读和未读状态

转载 作者:行者123 更新时间:2023-11-30 15:23:13 33 4
gpt4 key购买 nike

我正在使用 MailKit 从 gmail 帐户读取邮件。效果很好。但是,我想获取消息状态,例如是否已读、未读、重要、已加星标等。MailKit 可以吗?我似乎找不到任何相关信息。

这是我的代码:

 var inbox = client.Inbox;
var message = inbox.GetMessage(4442);//4442 is the index of a message.

Console.WriteLine("Message Importance : {0}", message.Importance);
Console.WriteLine("Message Priority : {0}", message.Priority);

重要性和优先级总是返回“正常”。如何发现这条消息被标记为重要或不重要?以及如何获取此消息的已读或未读状态?

最佳答案

没有消息属性,因为 MimeMessage 只是经过解析的原始 MIME 消息流,而 IMAP 不会将这些状态存储在消息流中,而是将它们分开存储。

要获取所需的信息,您需要使用 Fetch() 方法:

var info = client.Inbox.Fetch (new [] { 4442 }, MessageSummaryItems.Flags | MessageSummaryItems.GMailLabels);
if (info[0].Flags.Value.HasFlag (MessageFlags.Flagged)) {
// this message is starred
}
if (info[0].Flags.Value.HasFlag (MessageFlags.Draft)) {
// this is a draft
}
if (info[0].GMailLabels.Contains ("Important")) {
// the message is Important
}

希望对您有所帮助。

关于c# - MailKit Imap 获取邮件的已读和未读状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34676863/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com