Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Anh cho em hỏi về IMAP trong C#

15:30 05-01-2018 1.251 lượt xem 2 bình luận 15:33 05-01-2018

Làm sao để sử dụng IMAAP trong C# ?
Thư viện nào hỗ trợ ?
Và làm sao để lấy mail mới nhất ?

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 15: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);
            }
        }
    }
}

 

Câu hỏi mới nhất