Bhaskar Posted October 8, 2009 Share Posted October 8, 2009 This to topic is all about all imap functions Link to comment https://forums.phpfreaks.com/topic/176948-reading-cc-and-bcc-email-ids-using-php-imap/ Share on other sites More sharing options...
Bhaskar Posted October 8, 2009 Author Share Posted October 8, 2009 This to topic is all about all imap functions Hi All, I am using imap functions to read the mails from the specific mail box. the following the code which i have used. $mbox = imap_open("{--------}INBOX","username","pass"); $mc = imap_check($mbox); $result = imap_fetch_overview($mbox,"1:{$mc->Nmsgs}",0); foreach ($result as $overview) { echo $overview->to; echo $overview->seen; echo $overview->subject; } the o/p is: [email protected] 1 test mail What my requirement is i am not able to retrieve the "cc" and "Bcc" email id's of that inbox entry. Can any one advice me how to get this cc and Bcc email id's. Thanks in advance. Bhaskar Nagelli Link to comment https://forums.phpfreaks.com/topic/176948-reading-cc-and-bcc-email-ids-using-php-imap/#findComment-932973 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.