I want to create window application through which i can read email from gmail.
Actually i want to read proper format of email like to,from,subject,cc and body.
using (Imap imap = new Imap())
{
imap.ConnectSSL("mail.company.com");
imap.Login("[email protected]", "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);
}
It is this error.
No connection could be made because the target machine actively refused it
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…