Hi all
I'm trying to use the imap / pop functions in php to read a pop mailbox. Here's my code with the obvious changed.
$host = 'mail.mydomain.com';
$name = '
[email protected]';
$pwd = 'mypw';
$mailbox = '{' . $host . ':110/pop3/notls}INBOX';
$mbox=imap_open ($mailbox, $name, $pwd);
That...