我看到很多关于如何发送电子邮件的示例,但我希望运行检查电子邮件帐户的操作。
有谁知道是否可以做到(我确定可以)并指出一些例子?
答案 0 :(得分:3)
有几种方法可以获得Gmail收件箱。
<强> OpenPop 强>
如果您确实想使用POP,并且不介意使用外部库,这看起来是最好/最简单的方法。 OpenPop允许您访问安全/不安全的电子邮件帐户并让您选择端口。请参阅this post开始使用。
OpenPop是一个实现邮件的开源C#.NET代码包 提取和解析。在撰写本文时,它仅使用Microsoft .NET 框架库来做必需的。但是为了访问安全的pop 服务器,openPop可以使用一些SSL库进行扩展。
例如,要通过Pop访问Gmail:
POPClient poppy = new POPClient();
poppy.Connect("pop.gmail.com", 995, true);
poppy.Authenticate(username@gmail.com, "password");
int Count = poppy.GetMessageCount();
if (Count > 0)
{
for (int i = Count; i >= 1; i -= 1)
{
OpenPOP.MIMEParser.Message m = poppy.GetMessage(i, false);
//use the parsed mail in variable 'm'
}
}
TcpClient POP3:
要通过Pop3从任何提供商处检索电子邮件,您可以使用TcpClient。使用Gmail时,它只是略有不同,因为Gmail使用SSL和端口995用于POP。有一个例子here:
// create an instance of TcpClient
TcpClient tcpclient = new TcpClient();
// HOST NAME POP SERVER and gmail uses port number 995 for POP
tcpclient.Connect("pop.gmail.com", 995);
// This is Secure Stream // opened the connection between client and POP Server
System.Net.Security.SslStream sslstream = new SslStream(tcpclient.GetStream());
// authenticate as client
sslstream.AuthenticateAsClient("pop.gmail.com");
Gmail Atom Feed:
第一种方法是使用GmailAtomFeed
,它是C# .Net Gmail Tools的一部分。该网站说:
GmailAtomFeed类为其提供了一个简单的对象图层 以编程方式访问gmails atom feed。只有几行 代码将从gmail中检索并解析。在那之后 条目可以通过对象层访问 AtomFeedEntryCollection,以及对原始Feed和Feed的访问权限 XmlDocument也可用。
这是你如何使用它的一个例子:
// Create the object and get the feed
RC.Gmail.GmailAtomFeed gmailFeed = new RC.Gmail.GmailAtomFeed("username", "password");
gmailFeed.GetFeed();
// Access the feeds XmlDocument
XmlDocument myXml = gmailFeed.FeedXml
// Access the raw feed as a string
string feedString = gmailFeed.RawFeed
// Access the feed through the object
string feedTitle = gmailFeed.Title;
string feedTagline = gmailFeed.Message;
DateTime feedModified = gmailFeed.Modified;
//Get the entries
for(int i = 0; i < gmailFeed.FeedEntries.Count; i++) {
entryAuthorName = gmailFeed.FeedEntries[i].FromName;
entryAuthorEmail = gmailFeed.FeedEntries[i].FromEmail;
entryTitle = gmailFeed.FeedEntries[i].Subject;
entrySummary = gmailFeed.FeedEntries[i].Summary;
entryIssuedDate = gmailFeed.FeedEntries[i].Received;
entryId = gmailFeed.FeedEntries[i].Id;
}
<强> IMAP 强>
另一种方式,如果您不限于POP,则使用IMAP。使用IMAP,您可以连接到SSL服务器并选择一个端口:
using (Imap imap = new Imap())
{
imap.ConnectSSL("imap.gmail.com", 993);
imap.Login("angel_y@company.com", "xyx***"); // MailID As Username and Password
imap.SelectInbox();
List<long> uids = imap.SearchFlag(Flag.Unseen);
foreach (long uid in uids)
{
string eml = imap.GetMessageByUID(uid);
IMail message = new MailBuilder()
.CreateFromEml(eml);
Console.WriteLine(message.Subject);
Console.WriteLine(message.TextDataString);
}
imap.Close(true);
}
答案 1 :(得分:1)
我在网上找到了这个代码,但是“POP3_Client”无法识别,我没有看到添加它的任何参考
POP3_Client Mailbox = new POP3_Client(new >>>>IntegratedSocket<<<<<("pop.yourisp.com", 110), "yourusername", "yourpassword");
Mailbox.Connect();
Debug.Print("Message count: " + Mailbox.MessageCount.ToString());
Debug.Print("Box size in bytes: " + Mailbox.BoxSize.ToString());
uint[] Id, Size;
Mailbox.ListMails(out Id, out Size);
for (int Index = 0; Index < Id.Length; ++Index)
{
string[] Headers = Mailbox.FetchHeaders(Id[Index], new string[] { "subject", "from", "date" });
Debug.Print("Mail ID " + Id[Index].ToString() + " is " + Size[Index].ToString() + " bytes");
Debug.Print("Subject: " + Headers[0]);
Debug.Print("From: " + Headers[1]);
Debug.Print("Date: " + Headers[2]);
Debug.Print("======================================================================");
}
Mailbox.Close();