我想创建一个窗口应用程序,通过它我可以从gmail中读取电子邮件。
其实我想阅读正确的电子邮件格式,例如,来自主题,cc和正文。
using (Imap imap = new Imap())
{
imap.ConnectSSL("mail.company.com");
imap.Login("angel_y@company.com", "xyx***");
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);
}
这是错误。 由于目标机器主动拒绝它,因此无法建立连接
答案 0 :(得分:5)
试试这个我添加了端口号和gmail imap服务器以连接到服务器
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)
我确信有很多库可以做到这一点。快速搜索转过来了:
http://code.msdn.microsoft.com/CSharpGmail
这是一个小工具/小部件应用程序,它有一些代码可以执行此操作: http://www.codeproject.com/KB/gadgets/GadgetInterop.aspx
答案 2 :(得分:0)
您可能需要确保使用正确的主机名和端口号。配置这些设置取决于您用于.Net
的IMAP API但您要使用的设置列在google's网站上。
答案 3 :(得分:-1)
gmail通过其配置页面提供访问权限,以通过POP3 / IMAP下载电子邮件。以下是我在Google上发现的一些可用于IMAP访问的链接。
http://www.codeproject.com/KB/IP/imaplibrary.aspx
http://koolwired.com/solutions/solutions.aspx?id=30
希望这有帮助!