Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 Mailkit 添加顶级文件夹,因此当我添加以下标签时,我可以将它们分组在此文件夹下。
标签是:
我想创建一个名为 mailkit 的文件夹,以便 gmail 将它们分组,但我目前似乎找不到这样做的方法。这可能吗,有人有例子吗?
这是您需要执行的操作的示例:
var toplevel = client.GetFolder (client.PersonalNamespaces[0]); var mailkit = toplevel.Create ("mailkit", false); var archive = mailkit.Create ("archive", true); var flagged = mailkit.Create ("flagged", true);
希望有帮助。