如何将多个标志传递到 IMAP 中?
我正在 MailClient 上工作,我想为例如设置多个标志。看见了,看不见所以我如何在 C# 中设置, 我已经像这样传递了这个命令,但它会给我错误。就像坏命令一样。 所以我的命令是这样的。 byte[] commandBytes = System.Text.Encoding.ASCII.GetBytes((@"$ UID SEARCH UNSEEN \SEEN" + "\r\n"));
谢谢..
I am working on MailClient and I want to set Multipal Flags for Eg. SEEN, UNSEEN so how I can set in C#,
I had pass this command like this but it will give me error. like BAD command.
so the my command like this.
byte[] commandBytes = System.Text.Encoding.ASCII.GetBytes((@"$ UID SEARCH UNSEEN \SEEN" + "\r\n"));
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用反斜杠,这是正确的请求:
您确定要从头开始编写自己的 IMAP 客户端吗?有一些开源库,以及付费库(我的 Mail.dll IMAP 组件 例如)。
Don't use backslash, this is the correct request:
Are you sure you want write you own IMAP client from scrach? There are some opensource libraries, as well as paid ones (My Mail.dll IMAP component for example).