|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2005-03-29 14:52 UTC] sniper@php.net
  [2005-03-29 19:14 UTC] scalero at datadec dot es
  [2016-12-30 22:47 UTC] cmb@php.net
 
-Package: Feature/Change Request
+Package: IMAP related
  [2020-10-09 15:02 UTC] cmb@php.net
 
-Status:      Open
+Status:      Closed
-Assigned To:
+Assigned To: cmb
  [2020-10-09 15:02 UTC] cmb@php.net
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 14:00:01 2025 UTC | 
Description: ------------ When I apply the function "imap_fetch_overview" to a message with several email addresses recipients only the fisrt is returned in the 'to' field. This is the result of 'imap_fetch_overview' to a message with 2 recipients: array(1) { [0]=> object(stdClass)(14) { ["subject"]=> string(11) "TEST mail" ["from"]=> string(20) "aaa@test.net" ["to"]=> string(18) "bbb@test.net" ["date"]=> string(31) "Tue, 29 Mar 2005 08:36:53 +0200" ["message_id"]=> string(63) "<20050329083653.yoch0gx0kkkskk4k@test.net>" ["size"]=> int(564) ["uid"]=> int(17) ["msgno"]=> int(1) ["recent"]=> int(0) ["flagged"]=> int(0) ["answered"]=> int(0) ["deleted"]=> int(0) ["seen"]=> int(1) ["draft"]=> int(0) } } The "to" field must to contain "bbb@test.net, ccc@test.net". Greetings and thanks. Sebastian Calero.