search

Home  >  Q&A  >  body text

Problem with php imap receiving qq mail

Write a code to receive emails, but it prompts that the connection cannot be made. QQ mailbox has enabled imap. Paste the code below. Could you please help me?

$host = '{imap.qq.com:993/imap/ssl}INBOX';
$user = '*****';
$pass = '*****';
$inbox = imap_open($host, $user, $pass)or die("can't connect: " . imap_last_error());   
$mailboxes = imap_list($inbox, $host, '*');
$mailboxes = str_replace($host, '', $mailboxes);
print_r($mailboxes);

Paste the error code: From the Tencent mailbox, you can see that the address is imap.qq.com and it will prompt an error. .
Warning: imap_open(): Couldn't open stream {imap.qq.com:993/imap/ssl}INBOX in D:phpStudyWWWimap.php on line 5
can't connect: Please using authorized code to login. More information at http://service.mail.qq.com/cg...
Notice: Unknown: Please using authorized code to login. More information at http://service.mail.qq.com/ cg... (errflg=1) in Unknown on line 0

伊谢尔伦伊谢尔伦2783 days ago980

reply all(1)I'll reply

  • 大家讲道理

    大家讲道理2017-05-24 11:33:20

    Did you log in without using the authorization code?

    reply
    0
  • Cancelreply