Net_POP3::connect() -- Connection to POP3 server
Beschreibung
Connects to the given host on the given port.
Also looks for the timestamp in the greeting
needed for APOP authentication.
Rückgabewert
boolean - Gibt bei Erfolg TRUE zurück, bei einem Fehler FALSE.
Hinweise
Diese Methode kann nicht
statisch aufgerufen werden.
|
Net_POP3::Net_POP3() (Previous)
|
(Next) Net_POP3::deleteMsg()
|
|
|
Download Documentation
|
Last updated: Sun, 28 Sep 2008 |
|
Do you think that something on this page is wrong? Please file a bug report or add a note.
|
| User Notes: |
Note by: bortuzar@gmail.com
If you want to connect to a server with SSL use ssl:// before the POP3 Server Address.
Example:
$pop3 = new Net_POP3();
$strServerName = "ssl://mail.server.com";
$intPortNo = '995';
$pop3->connect($strServerName, $intPortNo);
|
|