ID: 45638
Updated by: [EMAIL PROTECTED]
Reported By: arun dot magzion at gmail dot com
-Status: Open
+Status: Bogus
Bug Type: IMAP related
Operating System: Windows
PHP Version: 5.2.5
New Comment:
Unfortunately this is how c-client works. PHP merely wraps around the
functions provided by that library.
Previous Comments:
------------------------------------------------------------------------
[2008-07-27 15:37:50] arun dot magzion at gmail dot com
Dear Team,
Consider this example,
I sent email to 3 different email address and cc'ed to another
different two email address. When I tried to receive all the email
address using imap_header i got the 2 cc'ed email address but not the 3
to address with the same loop and functions.
Please find the output for
$ccbcc = imap_header($mbox,$msgid);
print_r($ccbcc);
Here Iam getting the expected output for cc but not with the to address
whereas the same is fine with Gmail.
stdClass Object
(
[date] => Sun, 27 Jul 2008 21:04:37 +0530
[Date] => Sun, 27 Jul 2008 21:04:37 +0530
[subject] => Testing for multiple email address
[Subject] => Testing for multiple email address
[message_id] =>
<[EMAIL PROTECTED]>
[toaddress] => [EMAIL PROTECTED]
[to] => Array
(
[0] => stdClass Object
(
[mailbox] => info
[host] => grafotech.org
)
)
[fromaddress] => Arunkumar Vijayakumar <[EMAIL PROTECTED]>
[from] => Array
(
[0] => stdClass Object
(
[personal] => Arunkumar Vijayakumar
[mailbox] => arun.magzion
[host] => gmail.com
)
)
[ccaddress] => [EMAIL PROTECTED], [EMAIL PROTECTED]
[cc] => Array
(
[0] => stdClass Object
(
[mailbox] => mohan
[host] => grafotech.org
)
[1] => stdClass Object
(
[mailbox] => arun.magzion
[host] => gmail.com
)
)
[reply_toaddress] => Arunkumar Vijayakumar
<[EMAIL PROTECTED]>
[reply_to] => Array
(
[0] => stdClass Object
(
[personal] => Arunkumar Vijayakumar
[mailbox] => arun.magzion
[host] => gmail.com
)
)
[senderaddress] => Arunkumar Vijayakumar
<[EMAIL PROTECTED]><title>Grafotech(R) Magzion Mail</title>
[sender] => Array
(
[0] => stdClass Object
(
[personal] => Arunkumar Vijayakumar
[mailbox] => arun.magzion
[host] => gmail.com
)
)
[Recent] =>
[Unseen] =>
[Flagged] =>
[Answered] =>
[Deleted] =>
[Draft] =>
[Msgno] => 42
[MailDate] => 27-Jul-2008 10:34:55 -0500
[Size] => 2331
[udate] => 1217172895
)
------------------------------------------------------------------------
[2008-07-27 15:27:49] [EMAIL PROTECTED]
This is not enough information to even see whether this is expected or
really a bug. I suggest you try this first:
$ccbcc = imap_header($mbox,$msgid);
var_dump($ccbcc);
------------------------------------------------------------------------
[2008-07-27 14:53:33] arun dot magzion at gmail dot com
Description:
------------
THe imap_header funtion return the multiple email address for cc, bcc
but not with the to email address.
Reproduce code:
---------------
$ccbcc = imap_header($mbox,$msgid);
if(isset($ccbcc->to)){
$to = "";
foreach($ccbcc->to as $mto) {
if(isset($mto->personal)) {
$to = $to. $mto->personal;
}
if(isset($mto->mailbox) && isset($mto->host)) {
$to = $to."< ".$mto->mailbox."@".$mto->host." >". ",";
}
}
$to = substr($to, 0,strlen($to)-1);
}
Expected result:
----------------
[EMAIL PROTECTED], [EMAIL PROTECTED]
Actual result:
--------------
[EMAIL PROTECTED]
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=45638&edit=1