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
bit of a noob on this but I have followed your example in the readme for version 1.6.0.0
using (var pop = new AE.Net.Mail.Pop3Client("xxxxxxxxx","test@xxxxxxxxx","xxxxxxxxx",110,false,false))
for(var i = pop.GetMessageCount() - 1; i >= 0; i--){
var msg = pop.GetMessage(i,false);
Console.WriteLine(msg.Subject);
Console.WriteLine(msg.From);
Console.WriteLine(msg.Body);
}
body always returns empty any ideas? Subject and From are fine.
The text was updated successfully, but these errors were encountered:
bit of a noob on this but I have followed your example in the readme for version 1.6.0.0
}
body always returns empty any ideas? Subject and From are fine.
The text was updated successfully, but these errors were encountered: