i have a premium account (Dev)
trying to read mail from php using imap
i'm able to connect using outlook experss
but with PHP it does not work
any ideas of the server string that works?
i tried
PHP Code:
$imapServer = "{ciroc.x10premium.com:993}/ssl/secure/novalidate-cert";
$imapServer = "{ciroc.x10premium.com:993}/ssl/secure";
$imapServer = "{ciroc.x10premium.com:993}/ssl";
rest of the code is standard
PHP Code:
$link = imap_open($imapServer , $emlId, $emlPwd, OP_SECURE);
(i also tried without the secure option )