rbv_api.openPOP3()
Purpose
Opens connection to an external email server (such as Microsoft Exchange) using POP3 protocol. It must be called once before reading data from POP3 server.
Syntax
rbv_api.openPOP3(hostName, port,
userName, password,
mailProps)
Parameters
hostName
The name of the external mail server.
port
The port number for an SSL connection on the external mail server (typically 995).
userName
The user's name (typically user's email address) on the external mail server.
password
The user's password on the external mail server.
mailProps
The optional array of properties to be set on the external mail server. This may be null.
Return value
None
Example
rbv_api.openPOP3("mail.mydomain.com", 995, "address@mydomain.com", password, null);