c# Pop3Client throws exception that The server did not respond with a + response. The response was: ERR no such message 2189421
Pop3Client pop3Client; pop3Client = new Pop3Client(); pop3Client.Connect(“pop.abc.com”, 995, true); pop3Client.Authenticate(ReportFraudUser, ReportFraudPass, AuthenticationMethod.Auto); int count = pop3Client.GetMessageCount(); log.Info(” email Count ” + count); int counter = 0; Message message = pop3Client.GetMessage(i); getting error from message line I had tried to check pop3client connection is activate or disconnected sql email server disconnect New contributor Rutu is a […]