Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sending IMAP commands using php

I'm trying to access yahoo mail IMAP server with a php script. I read that yahoo requires a specific IMAP command “ID ("GUID" "1")”. How do I send this command ?

like image 248
coder Avatar asked Nov 05 '22 15:11

coder


1 Answers

As of this writing, I don't believe you can access Yahoo's IMAP services externally. However, in general, you will want to use socket functions.

http://us.php.net/manual/en/ref.sockets.php

like image 128
webbiedave Avatar answered Nov 14 '22 21:11

webbiedave