您好,我目前正在使用 limilabs 库连接到我的 gmail 帐户。该程序的目的是发送邮件和接收。在我的笔记本电脑上,我只能接收邮件,但在我朋友的电脑上,他既可以接收也可以发送。所以我的问题是为什么我不能在我的笔记本电脑上接收电子邮件?
该程序应该下载电子邮件并在列表框中填充主题,并且在我朋友的笔记本电脑上它可以工作,但在我的电脑上却不行。我在端口 143 上遇到了一些错误。这是我的代码的一部分。先感谢您。
public void ReadMail()
{
using (Imap imap = new Imap())
{
try
{
imap.Connect("imap.gmail.com"); //ConnectSSL for SSL
imap.Login("xxxxxxxxx", "xxxxxx");
}
catch (Exception ex)
{
MessageBox.Show("Log in failed. " + ex.ToString(), "Message", MessageBoxButtons.OK, MessageBoxIcon.Error);
}