如何从PHP获取电子邮件及其附件

时间:2008-09-22 13:49:14

标签: php email

我正在为朋友的婚礼写一个照片库webapp,他们想要一个照片库供客人提交他们当天拍摄的数码照片。

在评估了所有选项后,我认为对用户来说最简单的方法是让他们使用熟悉的界面(他们的电子邮件),然后让他们将图片作为附件发送。

我已创建了一个邮箱,但现在我需要连接并检索这些附件,以便自动处理以添加到图库系统。但是怎么样?你有没有看到过这方面的教程或预制课程?

7 个答案:

答案 0 :(得分:10)

之前我曾做过很多这方面的工作,但我找不到代码,这是我发现的缩小版本。它应该让你走上正确的道路。我曾经从cronjob运行这种类型的脚本。对不起,我找不到最终版本。 ;(

// Open pop mailbox
if (!$mbox = imap_open ("{localhost:110/pop3/notls}INBOX", "user", "tester")) {
  die ('Cannot connect/check pop mail! Exiting');
}

if ($hdr = imap_check($mbox)) {
  $msgCount = $hdr->Nmsgs;
} else {
  echo "Failed to get mail";
  exit;
}

$MN=$msgCount;
$overview=imap_fetch_overview($mbox,"1:$MN",0);

for ($X = 1; $X <= $MN; $X++) {

  $file = imap_fetchbody($mbox, $X, 1);

  imap_delete($mbox, $X);
}

imap_expunge($mbox);
imap_close($mbox);
祝你好运!

答案 1 :(得分:6)

如果您正在为此目的创建专用邮箱,那么使用过滤机制几乎绝对不是您想要的。相反,您希望将邮箱作为应用程序的管道,并让应用程序只读取来自stdin的消息,解析主体,并解析主体以获取附件。

我所知道的所有流行的基于unix的MTA都支持将邮箱作为管道,例如sendmail,postfix和qmail。通常,您可以在别名文件中定义它,如下所示:


#sendmail或后缀语法
msgsubmit:“| / usr / bin / php~path / to / example.php”

然后邮寄给msgsubmit @ get路由到php程序进行传递。

这样做的好处是不依赖于IMAP服务器或MTA之外的任何其他服务器,只要您可以控制目标主机的MTA,它就可以正常工作。如果您希望脚本检查系统上的所有消息,那么过滤就是您想要的,我猜测不是这种情况。

如果你想在某个地方保存一个副本(不是一个坏主意),只需定义别名以转到多个地址,如下所示:


msgsubmit: "| /usr/bin/php ~path/to/example.php", msgsubmit-box

或后缀虚拟格式:


msgsubmit
    "| /usr/bin/php ~path/to/example.php"
    msgsubmit-box

答案 2 :(得分:6)

您是否考虑过使用Google的Picasa Web Albums? 您可以设置电子邮件地址以发送照片并在线共享。 然后,您可以获得大多数程序员所拥有的这些照片的RSS源 比MTA更熟悉。

答案 3 :(得分:3)

您使用的是什么MTA?如果使用postfix + maildrop,则可以创建一个过滤规则,通过PHP脚本管理某些消息,然后处理传入的邮件。 (google for maildrop和xfilter)。

答案 4 :(得分:1)

我认为你想要一个MIME消息解析器。

我之前使用过this one它似乎工作正常,虽然我没有在真正的大附件上测试它(即你可能从数码相机获得的2-3MB文件)。

您是否已经拥有一个用于阅读POP3 / IMAP邮箱的系统?同一网站上有another class也适用于POP3(我相信还有一个IMAP版本) - 但是如果你要下载一个公平的数量,你可能会想要调查几个基于C的解决方案我相信一个是纯PHP。

答案 5 :(得分:0)

Majordomo可以替代处理电子邮件,但文件附件处理存在一些限制。

答案 6 :(得分:-4)

<?php
//make sure that submit button name is 'Submit'
if(isset($_POST['Submit'])){


       $name = $_POST['visitorname'];
       $email = $_POST['visitoremail'];
       $message = $_POST['visitormessage'];


            $to="youremail@yourdomain.com";

          $subject="From ".$name;


          $from = $email;

          // generate a random string to be used as the boundary marker
          $mime_boundary="==Multipart_Boundary_x".md5(mt_rand())."x";

          // now we'll build the message headers
          $headers = "From: $from\r\n" .
          "MIME-Version: 1.0\r\n" .
             "Content-Type: multipart/mixed;\r\n" .
             " boundary=\"{$mime_boundary}\"";

          // next, we'll build the invisible portion of the message body
          // note that we insert two dashes in front of the MIME boundary
          // when we use it
          $message = "This is a multi-part message in MIME format.\n\n" .
             "--{$mime_boundary}\n" .
             "Content-Type: text/plain; charset=\"iso-8859-1\"\n" .
             "Content-Transfer-Encoding: 7bit\n\n" .
          $message . "\n\n";

 foreach($_FILES as $userfile)
          {
             // store the file information to variables for easier access
             $tmp_name = $userfile['tmp_name'];
             $type = $userfile['type'];
             $name = $userfile['name'];
             $size = $userfile['size'];



             // if the upload succeded, the file will exist
             if (file_exists($tmp_name))
             {

                // check to make sure that it is an uploaded file and not a system file
                if(is_uploaded_file($tmp_name))
                {

                   // open the file for a binary read
                   $file = fopen($tmp_name,'rb');

                   // read the file content into a variable
                   $data = fread($file,filesize($tmp_name));

                   // close the file
                   fclose($file);

                   // now we encode it and split it into acceptable length lines
                   $data = chunk_split(base64_encode($data));
                }

                // now we'll insert a boundary to indicate we're starting the attachment
                // we have to specify the content type, file name, and disposition as
                // an attachment, then add the file content.
                // NOTE: we don't set another boundary to indicate that the end of the
                // file has been reached here. we only want one boundary between each file
                // we'll add the final one after the loop finishes.
                $message .= "--{$mime_boundary}\n" .
                   "Content-Type: {$type};\n" .
                   " name=\"{$name}\"\n" .
                   "Content-Disposition: attachment;\n" .
                   " filename=\"{$fileatt_name}\"\n" .
                   "Content-Transfer-Encoding: base64\n\n" .
                $data . "\n\n";
             }
          }


$ok = @mail($to, $subject, $message , $headers);
if ($ok) {
if (($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg")
&& ($_FILES["file"]["size"] < 20000))
  {
  if ($_FILES["file"]["error"] > 0)
    {
    echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
    }
  else
    {

if (file_exists("upload/" . $_FILES["file"]["name"]))
      {
      echo $_FILES["file"]["name"] . " already exists. ";
      }
    else
      {
      move_uploaded_file($_FILES["file"]["tmp_name"],
      "upload/" . $_FILES["file"]["name"]);

      }
    }
  }
else
  {

  }
echo "<span class='red'>E-mail has been sent successfully from $mail_name to $to</span>"; }
else{
echo "<span class='red'>Failed to send the E-mail from $from to $to</span>";
}
}
?>

p / s:我使用了这个code.hope它的工作并帮助你。只需复制和粘贴。确保你的文本域名与本页中的相同。适用于所有类型的文件。有关更多问题,请发送电子邮件我在shah @ mc-oren.com.anyway,我也在学习过程中。=)。谢谢。