POP3 :: boolean pnoop ( resource connection ) Returns TRUE if has been successfully recived, FALSE if not. Send NOOP command. Example:
$open = POP3::Connect('mail.host.net', 'username', 'password'); $noop = POP3::pNoop($open); echo $noop ? 'You are logged in.' : 'Error';