Hello I am currently using limilabs library to connect to my gmail account. The purpose of the program is to send mail and to receive. On my laptop I can only receive mails but on my friend's pc he can both receive and send. So my question is why can't I receive emails on my laptop?
The program is supposed to download the emails and populate the subject in a listbox and on my friend's laptop it is working but not on mine. I am getting some error with port 143. Here is part of my code. Thank you in advance.
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);
}
Imapclass built in or using some library? – leppie Feb 15 at 10:25IMapis a class in the limilabs mail library (OP does mention that!) - see here for limited documentation/examples. – Bridge Feb 15 at 10:28