使用C#确定邮箱访问协议
我绞尽脑汁想知道如何确定邮箱使用的协议。 我正在创建一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅从地址无法判断哪些访问方法可能有效。有 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.