|
Hello,
VB.Net Send E-mail So easy, huh ?! VB.Net Receive E-mail
List of Updates Update (1) Aug,15,2012 - I was able to successfully get response from Gmail (pop.gmail.com) server and pass my Username and password. |
POP Commands
Command | Responses | Examples |
---|---|---|
USER name | +OK name is welcome here -ERR never heard of name |
USER David +OK Please enter a password - Note that this should be sent first .... |
PASS string | +OK maildrop locked and ready -ERR invalid password -ERR unable to lock maildrop |
PASS test +OK valid logon |
QUIT | +OK | +OK Server closing connection |
STAT | +OK nn mm | STAT +OK 2 320 - Returns how many E-mails are in Inbox ..... |
LIST [msg] | +OK scan listing follows -ERR no such message |
LIST +OK 2 messages (320 octets) 1 120 2 200 ... LIST 2 +OK 2 200 - Get a list of all E-mails you've waiting for ..... |
RETR msg | +OK message follows -ERR no such message |
RETR 1 +OK 120 octets < the POP3 server sends the entire message here > - Retrieves E-mail messages from the server ..... |
DELE msg | +OK message deleted -ERR no such message |
DELE 2 +OK message deleted |
NOOP | +OK no transaction | NOOP +OK - Stands for (No Operation) : checks the server status .... |
LAST | +OK nn | LAST +OK 2 |
RSET | +OK | RSET +OK maildrop has 2 messages (320 octets) |
Additional Commands | ||
TOP msg nn | +OK top of msg -ERR |
TOP 1 10 +OK < first 10 lines of the header > |
RPOP user | +OK -ERR |
RPOP david +OK enter password |
All Rights Reserved to the Developer evry1falls