Communicate w/ POP3 Server
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:
Winsock1.SendData "USERmidgetsbro"
Do Until DoneSending = True 'the donesending variable is changed in the SendComplete event of the Winsock control
DoEvents
Loop
DoneSending = False
Winsock1.SendData "PASSmypassword"
Do Until DoneSending = True
DoEvents
Loop
Winsock1.SendData "GET" & 'I dunno what to put here to get email, I know it works like this for FTP
'etc.
Thanks to anyone who responds