VERSION
VERSION = '6.6.0' : string
The POP3 PHPMailer Version number.
PHPMailer POP-Before-SMTP Authentication Class.
Specifically for PHPMailer to use for RFC1939 POP-before-SMTP authentication.
$do_debug : int
POP3 class debug output mode.
Debug output level. Options:
$host : string
POP3 mail server hostname.
$port : int
POP3 port number.
$tval : int
POP3 Timeout Value in seconds.
$username : string
POP3 username.
$password : string
POP3 password.
$pop_conn : resource
Resource handle for the POP3 connection socket.
$connected : bool
Are we connected?
$errors : array
Error container.
popBeforeSmtp(string $host, int|bool $port = false, int|bool $timeout = false, string $username = '', string $password = '', int $debug_level) : bool
Simple static wrapper for all-in-one POP before SMTP.
string | $host | The hostname to connect to |
int|bool | $port | The port number to connect to |
int|bool | $timeout | The timeout value |
string | $username | |
string | $password | |
int | $debug_level |
authorise(string $host, int|bool $port = false, int|bool $timeout = false, string $username = '', string $password = '', int $debug_level) : bool
Authenticate with a POP3 server.
A connect, login, disconnect sequence appropriate for POP-before SMTP authorisation.
string | $host | The hostname to connect to |
int|bool | $port | The port number to connect to |
int|bool | $timeout | The timeout value |
string | $username | |
string | $password | |
int | $debug_level |