*WEB/POP3 |
POP3 Email Retrieval |
This object provides a means to connect to a POP3 email server and retrieve email. It can be used against any POP3 email server using either an encrypted or unencrypted connection.
The supported Methods and Properties are listed below.
(The *web/pop3 object was added in PxPlus 2014.)
Connect to the desired server using the 'Connect, 'SSLConnect, 'OAuthConnect or 'OAuthSSLConnect methods, providing the POP3 server name, User ID and password/access token. By default, the process will connect with the default POP3 port numbers (110 for non-SSL, 995 for SSL). If you want to use a different port, append the port number to the server name, separated by a ; (semi-colon); e.g. 'pop.example.com;1234'.
When connecting to a POP3 server that supports/requires OAuth2 authentication instead of User Name/Password authentication, you can use the OAuth2 connect methods where you can pass in an OAuth2 access token.
To get a valid access token, you will need to have set up OAuth2 with the server provider. Using the credentials given to you and their authorization and/or token URLs, you can request an access token.
You can use *plus/web/request for the grant_type=client_credential OAuth2 flow, or you can use the *obj/OAuth2 object for the grant_type=authorization_code flow to get access tokens.
See Access OAuth2 Restricted Web Service for an example of getting the access token for a PxPlus Web service.
See the Examples below for additional OAuth2 authorization information when retrieving an email.
See Submitting a Web Request for information on using the *plus/web/request utility.
(OAuth2 support for the *web/pop3 object was added in PxPlus 2025.)
During the connection sequence, the object will download a list of the emails and their identifiers from the server. The number of emails on the server can be found in the 'MailCount property. You can also retrieve the server's internal mail identifier using the 'GetMailId$(mailidx) method.
To get the contents of an email, use the 'Retrieve method, passing either the mail index or the server mail identifier.
Once it is retrieved, you can access the email 'Subject$, 'From$, 'Header$ and 'Body$.
To delete an email from the server, use the 'Delete method. It will delete the current email retrieved.
Processed Emails
The object also provides a means to record "Processed" emails. You can supply a file that can be loaded with the identifiers of emails your logic has processed.
The following methods are supported:
Method |
Description |
Connect(srvr$,userid$,password$) |
Connect to mail server (non-encrypted). |
SSLConnect(srvr$,userid$,password$) |
Connect to mail server (encrypted). |
OAuthConnect(srvr$,userid$,accesstoken$) |
Connect to mail server and authenticate via OAuth2 (non-encrypted). (The OAuthConnect method was added in PxPlus 2025.) |
OAuthSSLConnect(srvr$,userid$,accesstoken$) |
Connect to mail server and authenticate via OAuth2 (encrypted). (The OAuthSSLConnect method was added in PxPlus 2025.) |
Disconnect( ) |
Disconnect from server. |
GetMailId$(mailidx) |
Return identifier for specified index. |
Retrieve(mailidx) |
Get specific mail given index. |
Retrieve(mailid$) |
Get specific mail given mail identifier. |
IsProcessed( ) |
Returns 1 if current email has been marked as processed; else returns 0. |
MarkProcessed( ) |
Mark current email as processed. |
Retrieve( ) |
Get next unprocessed email. |
Delete( ) |
Delete currently selected email. |
LoadProcessed(filename$) |
Load file containing list of processed emails. |
SaveProcessed(filename$) |
Save list of currently processed emails. |
The following properties are supported:
Property |
Description |
MailCount |
(Read Only) Number of emails on server. |
Header$ |
(Read Only) Returns the email header for the currently selected email. |
Body$ |
(Read Only) Returns the body of the currently selected email. |
From$ |
(Read Only) Returns the from address for the currently selected email. |
Subject$ |
(Read Only) Returns the subject line for the currently selected email. |
Mailid$ |
(Read Only) Returns the internal message ID for the current email. |
Mailid |
(Read Only) Returns the index number for the current email (reset on Retrieve). |
LastError$ |
(Read Only) Last error code. |
IsSecure |
(Read Only) Returns 1 if using an encrypted connection, 0 if not. |
IsConnected |
(Read Only) Returns 1 if connected, 0 if not. |
Example 1 - To retrieve email with a password:
oPop=new("*web/pop3" for program)
sts=oPop'Connect("pop3.example.com","test@example.com","SnowFlakes")
if sts<>1 \
then print oPop'LastError$;
end
print oPop'MailCount
!
for i=1 to 20
print oPop'GetMailId$(i,err=*break)
next
!
for i=1 to 5
oPop'Retrieve(i)
print "Subject:",oPop'Subject$
next i
oPop'Disconnect()
Example 2 - To retrieve email with the OAuth2 authorization code flow:
oAuth2=new("*obj/oauth2")
oAuth2'Authorization_URL$=https://login.microsoftonline.com/common/oauth2/v2.0/authorize
oAuth2'Token_URL$=https://login.microsoftonline.com/common/oauth2/v2.0/token
oAuth2'client_id$=clientID$
oAuth2'client_secret$=clientSecret$
oAuth2'Enable_Certification("Consent granted to Example App to read e-mail via your Microsoft account")
wait 1
url$=oAuth2'Get_Authorization_URL$("https://outlook.office.com/POP.AccessAsUser.All,offline_access")
system_help url$
input "Press any key to continue after logging into account and allowing PxPlus access:",*;print ""
oAuth2'Get_Access_token()
refreshToken$=oAuth2'Refresh_token$
accessToken$=oAuth2'Access_token$
drop object oAuth2
oPop=new("*web/pop3")
sts=oPop'OAuthSSLConnect("outlook.office365.com","example@outlook.com",accessToken$)
if sts<>1 \
then print oPop'LastError$;
end
print oPop'MailCount
oPop'Disconnect()
(Example 2 was added in PxPlus 2025.)
*WEB/EMAIL Utility
*WEB/TESTEMAIL Utility
*WEB/SMTP Utility