3

IMAP/POP メールボックスにログインし、コンテンツを新しいメール アドレスに転送して、メールボックスから削除するスクリプトを実行しています。

現在はほとんど機能していますが、不可解な理由で、Ning サイトに送信された添付画像が押しつぶされたように見えるのに対し、Ning のアップロード用メール アドレスに直接送信された画像が添付されたメールは完全に形成されているように見えます。そのため、転送された電子メールの形式が異なります。添付ファイルの画像が元の画像とまったく同じではないかのように。

押しつぶされた画像のアップロードの例http://members.bigmanwalking.com/photo/a-test-photo?context=latest

どんな助けでも素晴らしいでしょう... このスクリプトを実行すると、画像が突然形を失ってしまうのはなぜなのかというパズルです。

<?php

      // Change to your mail server
      $host = "pop.1and1.co.uk";

      // Connecting to POP3 email server.
      $connection = imap_open("{" . $host . ":110/pop3/notls}", 'test@bigmanwalking.com', 'xxxx');

      // Total number of messages in Inbox
      $count = imap_num_msg($connection);
      echo $count . " messages found<br />";

      // Read Messages in Loop, Forward it to Actual User email and than delete it from current email account.
      for ($i = 1; $i <= $count; $i++) {
          $headers = imap_headerinfo($connection, $i);

          $subject = $headers->subject;

          $from = $headers->from[0]->mailbox . '@' . $headers->from[0]->host;
          if ($headers->cc[0]->mailbox)
              $cc = $headers->cc[0]->mailbox . '@' . $headers->cc[0]->host;
          $subject = $headers->subject;

          $structure = imap_fetchstructure($connection, $i);
          //$type = $this->get_mime_type($structure);

          // GET HTML BODY
          //$body = $this->get_part($connection, $i, "");

          $raw_body = imap_body($connection, $i);

          $attachments = array();

          if (isset($structure->parts) && count($structure->parts)) {
              for ($e = 0; $e < count($structure->parts); $e++) {
                  $attachments[$e] = array('is_attachment' => false, 'filename' => '', 'name' => '', 'attachment' => '');

                  if ($structure->parts[$e]->ifdparameters) {
                      foreach ($structure->parts[$e]->dparameters as $object) {
                          if (strtolower($object->attribute) == 'filename') {
                              $attachments[$e]['is_attachment'] = true;
                              $attachments[$e]['filename'] = $object->value;
                          } //if (strtolower($object->attribute) == 'filename')
                      } //foreach ($structure->parts[$e]->dparameters as $object)
                  } //if ($structure->parts[$e]->ifdparameters)

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

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

                  if ($attachments[$e]['is_attachment']) {
                      $filename = $attachments[$e]['filename'];
                      $filename = $attachments[$e]['name'];
                      $filecontent = $attachments[$e]['attachment'];
                  } //if ($attachments[$e]['is_attachment'])
              } //for ($e = 0; $e < count($structure->parts); $e++)
          } //if (isset($structure->parts) && count($structure->parts))



          echo "<pre>";
          echo "From: " . $headers->Unseen . "<br />";
          echo "From: " . $from . "<br />";
          echo "Cc: " . $cc . "<br />";
          echo "Subject: " . $subject . "<br />";
          echo "Content Type: " . $type . "<br />";
          echo "Body: " . $body . "<br />";


          $mail = new Zend_Mail();

          $mail->settype(Zend_Mime::MULTIPART_MIXED);

          for ($k = 0; $k < count($attachments); $k++) {
              $filename = $attachments[$k]['name'];
              $filecontent = $attachments[$k]['attachment'];

              if ($filename && $filecontent) {
                  $file = $mail->createAttachment($filecontent);
                  $file->filename = $filename;
              } //if ($filename && $filecontent)
          } //for ($k = 0; $k < count($attachments); $k++)


          $mail->setFrom($from);
          $mail->addTo('test@members.bigmanwalking.com');
          if ($cc)
              $mail->addCc($cc);
          $mail->setSubject($subject);
          $mail->setBodyHtml($body);
          $mail->send();

          // Mark the email messages once read
          imap_delete($connection, $i);

      } //for ($i = 1; $i <= $count; $i++)
      // Delete all marked message from current email account.

      imap_expunge($connection);

?>

4

1 に答える 1

2

答えが見つかりました。添付ファイルのMimeタイプを検出し、送信メールの添付ファイルにMimeタイプを追加することでした。これが行われると、写真は正しい比率でNingに表示されました。

私が必要としたヘルプはここhttp://php.net/manual/en/function.imap-fetchstructure.phpで見つかりました

于 2012-06-28T22:58:55.657 に答える