以前做邮箱密码验证功能,一直都是依赖于pop3功能的,但是很多邮箱默认是没有开通pop3功能的,那么怎么办呢?现在这里改用IMAP方式来登录邮箱,因为有一些邮箱默认是未开通pop3功能,但是却开通了IMAP功能。
首先引用S22.Imap.dll,然后使用下面的代码即可。
string server = "imap.126.com";
string user = "test";
string password = "123456";
ImapClient imap = new ImapClient(server, 993, true);
try
{
imap.Login(user, password, AuthMethod.Login);
imap.Dispose();
}
catch
{
MessageBox.Show("连接服务器失败,请检查您的账号密码是否正确!");
imap.Dispose();
}
DLL下载:S22.Imap.dll
ok
mjj通道