Sample code for 30+ languages & platforms
Xbase++ Requires Chilkat v11.0.0+

POP3 SSL - Read POP3 Email over TLS/SSL on Port 995

Demonstrates how to connect via TLS/SSL to a POP3 server and read email. This assumes that the POP3 server supports SSL.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oMailman
LOCAL oBundle
LOCAL nKeepOnServer
LOCAL nHeadersOnly
LOCAL nNumBodyLines
LOCAL oEmail
LOCAL i

nSuccess := 0

//  This example requires the Chilkat API to have been previously unlocked.
//  See Global Unlock Sample for sample code.

//  The mailman object is used for receiving (POP3) 
//  and sending (SMTP) email.
oMailman := CreateObject("Chilkat.MailMan")

//  Set the POP3 server's hostname
oMailman:MailHost := "pop.gmail.com"

//  Set the POP3 login/password.
oMailman:PopUsername := "****@gmail.com"
oMailman:PopPassword := "****"

//  Indicate that we want TLS/SSL.  Also, set the port to 995:
oMailman:MailPort := 995
oMailman:PopSsl := 1

oBundle := CreateObject("Chilkat.EmailBundle")
nKeepOnServer := 1
nHeadersOnly := 0
//  Irrelevent because we are NOT downloading headers-only
nNumBodyLines := 0
nSuccess := oMailman:FetchAll(nKeepOnServer, nHeadersOnly, nNumBodyLines, oBundle)
IF (nSuccess == 0)
    ? oMailman:LastErrorText
    oMailman:destroy()
    oBundle:destroy()
    RETURN
ENDIF

oEmail := CreateObject("Chilkat.Email")
i := 0
DO WHILE i < oBundle:MessageCount
    oBundle:EmailAt(i, oEmail)

    //  Display the From email address and the subject.
    ? "From: " + oEmail:From
    ? "Subject: " + oEmail:Subject
    i := i + 1
ENDDO

oMailman:destroy()
oBundle:destroy()
oEmail:destroy()