无法提取使用IMAP纯文本邮件内容(Can't fetch plain text mails

2019-07-29 16:54发布

我从一个特定的邮件ID使用阅读邮件IMAP function.But我不能够读取邮件内容plain text邮件。 这是SS的工作完美的HTML Mails 。 运行代码毕竟plain text邮件仍然标记为已读为未读和HTML邮件和其他像发件人邮件ID和主题我可以read.Only问题是阅读的内容。 这里是一个我曾尝试代码

    include('imap.php');
    $hostname = '{xxx.org:143/novalidate-cert}INBOX';
    $username = 'xxx-xxx@xx.org';
    $password = 'xxxxx';
    $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to : ' . imap_last_error());
    $emails = imap_search($inbox,'UNSEEN');

    if($emails) {
      $output = '';
      rsort($emails);
      foreach($emails as $email_number) {
        $structure = imap_fetchstructure($inbox, $email_number); 
            $savedir = dirname(__FILE__).'/uploads/';
                    $attachments = array();
                    if(isset($structure->parts) && count($structure->parts)) {

                        for($i = 0; $i < count($structure->parts); $i++) {

                            $attachments[$i] = array(
                                'is_attachment' => false,
                                'filename' => '',
                                'name' => '',
                                'attachment' => ''
                            );
                            if($structure->parts[$i]->ifdparameters) {
                                foreach($structure->parts[$i]->dparameters as $object) {
                                    if(strtolower($object->attribute) == 'filename') {
                                        $attachments[$i]['is_attachment'] = true;
                                        $attachments[$i]['filename'] = $object->value;
                                    }
                                }
                            }

                            if($structure->parts[$i]->ifparameters) {
                                foreach($structure->parts[$i]->parameters as $object) {
                                    if(strtolower($object->attribute) == 'name') {
                                        $attachments[$i]['is_attachment'] = true;
                                        $attachments[$i]['name'] = $object->value;
                                    }
                                }
                            }

                            if($attachments[$i]['is_attachment']) {
                                $attachments[$i]['attachment'] = imap_fetchbody($inbox, $email_number, $i+1);
                                if($structure->parts[$i]->encoding == 3) { // 3 = BASE64
                                    $attachments[$i]['attachment'] = base64_decode($attachments[$i]['attachment']);
                                }
                                elseif($structure->parts[$i]->encoding == 4) { // 4 = QUOTED-PRINTABLE
                                    $attachments[$i]['attachment'] = quoted_printable_decode($attachments[$i]['attachment']);



                                }

                                 $savepath = $savedir . $attachments[$i]['filename'];
                                file_put_contents($savepath, $attachments[$i]['attachment']);

                            }
                        }
                    }





                $name = $structure->parts[1]->dparameters[0]->value; 
                $overview = imap_fetch_overview($inbox,$email_number,0);
                 $msg = imap_fetchbody($inbox,$email_number,1.2); 

                 $message='';
                if($msg=='')
                {
                    $message = imap_fetchbody($inbox,$email_number,2.0);


                }else{
                 $message=$msg;

                 }


                 $sub=$overview[0]->subject;
                  $from=$overview[0]->from;
                  $arr = explode('<', $from);
                    $from_mail = $arr[1];
                    if($from_mail!='')
                    {
                        $from=str_replace('>','',$from_mail);
                    }


               $randstr='';
               srand((double)microtime()*1000000);

               $chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
               while(strlen($randstr)<5) {
                  $randstr.=substr($chars,(rand()%(strlen($chars))),1);
               } 

任何一个请帮我...在此先感谢

Answer 1:

你的问题是这样的一行:

$msg = imap_fetchbody($inbox,$email_number,1.2); 

1.2是文本/ HTML电子邮件部分,其用于HTML电子邮件主体。

1.1为text / plain - 纯文本电子邮件正文 - 你需要使用这一个纯文本邮件。



文章来源: Can't fetch plain text mails content using IMAP
标签: php email imap