php imap read x10hosting mail

tgkprog

Member
Messages
226
Reaction score
0
Points
16
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:
$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:
$link = imap_open($imapServer , $emlId, $emlPwd, OP_SECURE);

(i also tried without the secure option )
 
Top