使用C#确定邮箱访问协议

发布于 2024-09-04 21:20:11 字数 192 浏览 5 评论 0原文

我绞尽脑汁想知道如何确定邮箱使用的协议。 我正在创建一个简单的 C# 应用程序,它获取电子邮件地址并阅读所有邮件,首先我必须知道如何访问此邮箱(使用哪种协议) - 我正在寻找一种方法来检查它的内容适当的协议(请不要建议我尝试访问所有这些协议)。

顺便说一句,我对使用哪个框架没有任何限制。

提前谢谢! 我会感谢快速(而且良好:))的回复!

I racked my brain about how can i determine what protocol is used by a mailbox.
I'm creating a simple C# application that get an email adress and read all the mails, first of all i have to know how to access to this mailbox (which protocol to use) - i'm looking for a way to check what it the appropriate protocol (and please don't suggest me to try accessing all of them).

BTW, I don't have any limit which framework to use.

hanks in advance!!!
I'll appriciate a quick (and good :)) respone!

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

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

发布评论

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

评论(1

苯莒 2024-09-11 21:20:11

仅从地址无法判断哪些访问方法可能有效。有 2 个核心协议(POP3 和 IMAP)及其 SSL 变体。此外,还有您需要的与地址相关的所有其他信息(运行 POP3/IMAP/等的邮件服务器)。

这里的一般用例是通过从用户获取适当的数据(包括协议)来处理的。

There's no way to tell just from an address what access methods might work. There are the 2 core protocols (POP3 and IMAP) and their SSL variants. Additionally, there's all the other info you need related to the address (mail server running POP3/IMAP/etc.)

The general use case here is handled by getting the appropriate data (including protocol) from the user.

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