I am using the Net Library to down load emails but I am finding that the most recent email I can down load is from 17th June 2016, is there a different protocol for emails between now and then?
This is the routine:
This is the routine:
B4X:
Sub POP3outlook
Dim poper, pword As String
poper = "[email protected]"
pword = "xxxxxxxxxx"
pop.Initialize("pop3.live.com", 995, poper, pword, "pop")
pop.UseSSL = True '995 requires SSL.
pop.ListMessages
End Sub