K9SuperAdmin, KquizAdmin, KquizAuthorđã bình luận15:32 05-01-2018
thư viện cho bạn sài
using AE.Net.Mail;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using xNet;
using xNet.Net;
namespace IMAP_Kteam_K9
{
public static class Mail
{
public static void Verify(string email, string pass, string ipmap,int port)
{
while (true)
{
try
{
string body = null;
string url = null;
using (ImapClient ic = new ImapClient())
{
ic.Connect(ipmap, port, true, false);
int loginCount = 5;
while (loginCount > 0)
{
try
{
ic.Login(email, pass);
break;
}
catch
{
}
loginCount--;
}
// Select a mailbox. Case-insensitive
if (ic == null)
throw new Exception();
ic.SelectMailbox("INBOX");
int mailcount = ic.GetMessageCount();
while (mailcount < 2)
{
int countMail = 0;
while (countMail < 12)
{
try
{
Delay(5);
ic.SelectMailbox("INBOX");
mailcount = ic.GetMessageCount();
break;
}
catch
{
countMail++;
}
}
}
// Get the first *11* messages. 0 is the first message;
// and it also includes the 10th message, which is really the eleventh ;)
// MailMessage represents, well, a message in your mailbox
MailMessage[] mm = ic.GetMessages(0, mailcount - 1, false);
foreach (MailMessage m in mm)
{
if (m.Subject == "")
//if (m.Subject == "Account registration confirmation")
{
string sbody = m.Body;
break;
}
}
// Probably wiser to use a using statement
ic.Dispose();
}
HttpRequest rq = new HttpRequest();
rq.Cookies = new CookieDictionary();
rq.UserAgent = HttpHelper.FirefoxUserAgent();
//rq.Proxy = new HttpProxyClient("127.0.0.1", 8080);
//bool Load = false;
rq.Get(url);
//Load = true;
break;
}
catch
{
}
}
}
private static void Delay(int time)
{
for (int i = 0; i < time; i++)
{
Thread.Sleep(time);
}
}
}
}
thư viện cho bạn sài