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.
有没有办法按多个特定主题过滤消息的下载?
例如,我只需要下载各自主题中包含“for 10”或“for 11”的消息。
有一个主题很清楚:
folderSearchMessages.Messages.Download("SUBJECT for 10", messageFetchMode, numMessages)
顺便说一句,我在哪里可以找到更深入的文档?而不是官方页面。
不是 IMAPX 用户,但如果它是搜索字符串中的自由格式文本,您可以只使用 IMAP 搜索语言,详见RFC3501 § 6.4.4。如果您的服务器正确支持搜索(有很多不支持),您可以使用 OR 术语:
folderSearchMessages.Messages.Download("OR (SUBJECT \"for 10\") (SUBJECT \"for 11\")", messageFetchMode, numMessages)
请注意,您还应该引用您的字符串。