Hi!
This is my first visit this site.
I have some question for php programing.
I would like to read my emails with php but it did not work.
I used the next code:
<?php
require ('pop3.class.inc');
$pop3 = new POP3;
// Connect to mail server
$do = $pop3->connect ('pop3.vipmail.hu');
if ($do == false) {
die($pop3->error);
}
echo 'Connected to mail server';
$pop3->close();
?>
The answer what I get :
"POP3 connect() - Error: Can't connect to Server. Error: -- "
Can you help me what should be the problem?
Thanks,
Laszlo
[email protected]