You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The application throw me FormatException in this part of Code :
// Now we hope the only thing left in the characterSet is numbers.
int codepageNumber = int.Parse(charSetUpper, System.Globalization.CultureInfo.InvariantCulture);
After that i recive always : You must authenticate first!
I'm using this Code :
using(var pop = new Pop3Client("pop3.live.com", "username", "password", 995, true))
{
for (var i = pop.GetMessageCount() - 1; i >= 0; i--)
{
try
{
var msg = pop.GetMessage(i, false);
MessageBox.Show(msg.Raw);
MessageBox.Show(msg.Body);
}
catch(Exception ex)
{
Debug.WriteLine(ex.Message);
}
pop.DeleteMessage(i); //WE DON'T NEED NO STINKIN' EMAIL!
}
}
The text was updated successfully, but these errors were encountered:
Hi , i'm using aenetmail POP3 with Hotmail.
The application throw me FormatException in this part of Code :
After that i recive always : You must authenticate first!
I'm using this Code :
using(var pop = new Pop3Client("pop3.live.com", "username", "password", 995, true))
{
for (var i = pop.GetMessageCount() - 1; i >= 0; i--)
{
The text was updated successfully, but these errors were encountered: