2014-02-19 39 views
0

我收到一封郵件,發送給多個地址。 所有地址都在同一臺服務器上。 服務器配置爲「全部捕獲」。得到更多'toaddress'的郵件。哪裏可以找到?

當我得到標題(imap_headerinfo)或概述(imap_fetch_overview)時,只有一個'toaddress'。

標題中的'to'數組也只有一個地址。

stdClass Object 
(
    [date] => Wed, 19 Feb 2014 15:53:05 +0100 
    [Date] => Wed, 19 Feb 2014 15:53:05 +0100 
    [subject] => hhhh 
    [Subject] => hhhh 
    [message_id] => 
    [toaddress] => [email protected] 
    [to] => Array 
     (
      [0] => stdClass Object 
       (
        [mailbox] => test 
        [host] => domain.at 
       ) 

     ) 

    [fromaddress] => tester 
    [from] => Array 
     (
      [0] => stdClass Object 
       (
        [personal] => tester 
        [mailbox] => tester 
        [host] => gmx.at 
       ) 

該webmailer給我看兩個地址,所以信息,secon地址應該在某處。

我在哪裏可以找到第二個「到」地址?

謝謝 安迪

回答

0

它看起來像使用

$result = imap_fetch_overview($imap_conn,1,0); 

bevor

$header=imap_headerinfo ($imap_conn, $msg_nr); 

couses這個問題。

相關問題