2011-12-08 2 views

답변

3

샘플은 매우 분명하다

var client = new ImapX.ImapClient("imap.gmail.com", 993, true); 
client.Connection(); 
client.LogIn(userName, userPassword); 
var messages = client.Folders["INBOX"].Search("ALL", true); 

그래서, 질문에 대한 대답은 : 네!

ImapX를 사용하지 않았으므로이 코드가 작동하는지 확인할 수 없습니다. Personnaly, 좀 더 완성 된 것으로 보이는 MailSystem.NET을 선호하지만 (IMAP에 국한되지 않음) 문서가 부족합니다. 함께 작업을위한

+0

제안 : https://github.com/jstedfast/MailKit https://github.com/andyedinborough/aenetmail https://higlabo.codeplex.com/documentation https : //로 mailsystem. codeplex.com/ https://imapx.codeplex.com/ – Kiquenet

관련 문제