Visual FoxPro
Visual FoxPro
Send a Raw POP3 Command
See more POP3 Examples
Demonstrates the Chilkat MailMan.Pop3SendRawCommand method, which sends a raw command to the POP3 server and returns the server's response. The second argument specifies the charset to use if the command contains non-US-ASCII characters. This example sends the POP3 STAT command within an open session.
Background: POP3 is a simple line-based text protocol — the client sends short commands like
STAT, LIST, UIDL, or RETR and the server replies with +OK or -ERR. This method is an escape hatch for issuing a command Chilkat doesn't wrap directly, or a server-specific extension. Note that the session must already be open, since a raw command assumes an authenticated connection.Chilkat Visual FoxPro Downloads
LOCAL lnSuccess
LOCAL loMailman
LOCAL lcResponse
lnSuccess = 0
* Demonstrates the MailMan.Pop3SendRawCommand method, which sends a raw command to the POP3
* server and returns the server's response. The second argument is the charset used if the
* command contains non-US-ASCII characters.
loMailman = CreateObject('Chilkat.MailMan')
* Configure the POP3 server connection.
loMailman.MailHost = "pop.example.com"
loMailman.MailPort = 995
loMailman.PopSsl = 1
loMailman.PopUsername = "user@example.com"
loMailman.PopPassword = "myPassword"
lnSuccess = loMailman.Pop3BeginSession()
IF (lnSuccess = 0) THEN
? loMailman.LastErrorText
RELEASE loMailman
CANCEL
ENDIF
* Send the raw POP3 STAT command, which returns the message count and maildrop size.
lcResponse = loMailman.Pop3SendRawCommand("STAT","us-ascii")
IF (loMailman.LastMethodSuccess = 0) THEN
? loMailman.LastErrorText
RELEASE loMailman
CANCEL
ENDIF
? "STAT response: " + lcResponse
lnSuccess = loMailman.Pop3EndSession()
IF (lnSuccess = 0) THEN
? loMailman.LastErrorText
RELEASE loMailman
CANCEL
ENDIF
RELEASE loMailman