简体   繁体   English

php imap来自电子邮件地址

[英]php imap get from email address

How do I retrieve the email address from an email with imap_open? 如何从imap_open的电子邮件中检索电子邮件地址?

If the sender name is known I get the sender name instead of the email address if I use the 'from' parameter. 如果我知道发件人姓名,我会使用'from'参数获取发件人姓名而不是电子邮件地址。

Code: http://gist.github.com/514207 代码: http//gist.github.com/514207

$header = imap_headerinfo($imap_conn, $msgnum);
$fromaddr = $header->from[0]->mailbox . "@" . $header->from[0]->host;

I battled with this as well but the following works: 我也与此作斗争,但以下工作:

// Get email address
$header = imap_header($imap, $result); // get first mails header
echo '<p>Name: ' . $header->fromaddress . '<p>';
echo '<p>Email: ' . $header->senderaddress . '<p>';

I had used imap_fetch_overview() but the imap_header() gave me all the information I needed. 我曾经使用过imap_fetch_overview()但是imap_header()给了我所需的所有信息。

Worst case, you can parse the headers yourself with something like: 最糟糕的情况是,您可以使用以下内容解析标题:

<?php
$headers=imap_fetchheader($imap, $msgid);
preg_match_all('/([^: ]+): (.+?(?:\r\n\s(?:.+?))*)\r\n/m', $headers, $matches);
?>

$matches will contain 3 arrays: $ matches将包含3个数组:

$matches[0] are the full-lines (such as "To: user@user.com\r\n")
$matches[1] will be the header (such as "To")
$matches[2] will be the value (user@user.com)

Got this from: http://www.php.net/manual/en/function.imap-fetchheader.php#82339 得到了这个: http//www.php.net/manual/en/function.imap-fetchheader.php#82339

Had same issue as you....had to piece it together, don't know why it's such gonzoware. 和你一样的问题......不得不将它拼凑在一起,不知道为什么会这样的gonzoware。

Untested example here: 这里未经测试的例子:

$mbox = imap_open(....)

$MN=$MC->Nmsgs;
$overview=imap_fetch_overview($mbox,"1:$MN",0);
$size=sizeof($overview);
for($i=$size-1;$i>=0;$i--){
    $val=$overview[$i];
    $msg=$val->msgno;
    $header = imap_headerinfo ( $mbox, $msg);
    echo '<p>Name  / Email Address: ' . $header->from[0]->personal ." ".
    $header->from[0]->mailbox ."@". $header->from[0]->host. '<p></br>';
}
imap_close($mbox);

imap_fetch_overview could be what you're looking for: http://www.php.net/manual/en/function.imap-fetch-overview.php imap_fetch_overview可能是您正在寻找的: httpimap_fetch_overview

An example of use can be found here: http://davidwalsh.name/gmail-php-imap , specifically 可以在此处找到使用示例: http//davidwalsh.name/gmail-php-imap ,具体而言

echo $overview[0]->from;

This function is simple, but has limitations. 这个功能很简单,但有局限性。 A more exhaustive version is in imap_headerinfo ( http://www.php.net/manual/en/function.imap-headerinfo.php ) which can return detailed arrays of all header data. 更详尽的版本在imap_headerinfohttp://www.php.net/manual/en/function.imap-headerinfo.php )中,它可以返回所有标题数据的详细数组。

Had trouble until I spotted that the $header is an array of stdClass Objects. 遇到麻烦,直到我发现$ header是一个stdClass对象数组 The following 2 lines worked: 以下两行有效:

    $header=imap_fetch_overview($imap,$countClients,FT_UID);
    $strAddress_Sender=$header[0]->from;

Full working code with an online example 完整的工作代码与在线示例

Extract email addresses list from inbox using PHP and IMAP inbox-using-php-and-imap 使用PHP和IMAP inbox-using-php-and-imap 从收件箱中提取电子邮件地址列表

I think all you need is just to copy the script. 我认为你所需要的只是复制脚本。

I am publishing two core functions of the code here as well (thanks to Eineki's comment) 我也在这里发布代码的两个核心功能(感谢Eineki的评论)

         function getAddressText(&$emailList, &$nameList, $addressObject) { 
            $emailList = '';
            $nameList = '';
            foreach ($addressObject as $object) {
                $emailList .= ';';
                if (isset($object->personal)) { 
                     $emailList .= $object->personal;
                } 
                $nameList .= ';';
                if (isset($object->mailbox) && isset($object->host)) { 
                    $nameList .= $object->mailbox . "@" . $object->host;
                }    
            }    
            $emailList = ltrim($emailList, ';');
            $nameList = ltrim($nameList, ';');
        } 

        function processMessage($mbox, $messageNumber) { 
            echo $messageNumber;
            // get imap_fetch header and put single lines into array
            $header = imap_rfc822_parse_headers(imap_fetchheader($mbox, $messageNumber));
            $fromEmailList = '';
            $fromNameList = '';
            if (isset($header->from)) { 
                getAddressText($fromEmailList, $fromNameList, $header->from); 
            }
            $toEmailList = '';
            $toNameList = '';
            if (isset($header->to)) {
                getAddressText($toEmailList, $toNameList, $header->to); 
            }    
            $body = imap_fetchbody($mbox, $messageNumber, 1);
            $bodyEmailList = implode(';', extractEmail($body));
            print_r(
               ',' . $fromEmailList . ',' . $fromNameList 
                . ',' . $toEmailList . ',' . $toNameList 
                . ',' . $bodyEmailList . "\n"
            );
        } 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM