可以使用 imapX 获取电子邮件列表吗?

发布于 2024-12-20 06:31:04 字数 173 浏览 0 评论 0原文

我下载了 ImapX 库,我需要知道是否可以使用 imapx 获取电子邮件列表?如果没有,最好的快速方法是什么?谷歌 API 看起来有点令人困惑。我需要它来 winforms 应用程序。

I downloaded the ImapX library and I need know it is possible get email list using imapx? if not, what is the best quick and fast way to do it? the google API looks like a bit confusing. and I need it to winforms application.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

擦肩而过的背影 2024-12-27 06:31:04

ImapX 网站上提供的示例非常清楚:

var client = new ImapX.ImapClient("imap.gmail.com", 993, true);
client.Connection();
client.LogIn(userName, userPassword);
var messages = client.Folders["INBOX"].Search("ALL", true);

所以,您的问题的答案是:是的!

我没有使用过 ImapX,所以我无法确认这段代码是否有效。就我个人而言,我更喜欢 MailSystem.NET ,它似乎更完整(不仅限于 IMAP),但缺乏文档。

The sample provided on the ImapX site is pretty clear :

var client = new ImapX.ImapClient("imap.gmail.com", 993, true);
client.Connection();
client.LogIn(userName, userPassword);
var messages = client.Folders["INBOX"].Search("ALL", true);

So, the answer to your question is: Yes!

I haven't used ImapX, so I cannot confirm that this code is working. Personnaly, I prefer MailSystem.NET which seems to be more complete (it's not limited to IMAP) but lacks documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文