What are the commands to send to the POP3 server to log in and get the e-mail? Is it the same was as using FTP, like
VB Code:
  1. Winsock1.SendData "USERmidgetsbro"
  2. Do Until DoneSending = True 'the donesending variable is changed in the SendComplete event of the Winsock control
  3.      DoEvents
  4. Loop
  5. DoneSending = False
  6. Winsock1.SendData "PASSmypassword"
  7. Do Until DoneSending = True
  8.      DoEvents
  9. Loop
  10. Winsock1.SendData "GET" & 'I dunno what to put here to get email, I know it works like this for FTP
  11. 'etc.

Thanks to anyone who responds