我正在为朋友的婚礼编写一个照片库 web 应用程序,他们想要一个照片库供客人提交他们当天拍摄的数码照片。
在评估了所有选项之后,我决定对用户来说最简单的事情是让他们使用熟悉的界面(他们的电子邮件),然后让他们将图片作为附件发送。
我已经创建了一个邮箱,但现在我需要连接和检索这些附件,以便自动处理以添加到图库系统。但是怎么做?您是否看过任何教程或预制课程?
我以前经常这样做,但我找不到代码,这是我找到的缩小版本。它应该让你走上正确的道路。我曾经从 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);
祝你好运!
如果您为此目的创建一个专用邮箱,那么使用过滤机制几乎绝对不是您想要的。相反,您希望邮箱成为应用程序的管道,并让应用程序简单地从标准输入读取消息,解析出正文,然后 MIME 解析正文以获取附件。
我所知道的所有流行的基于 unix 的 MTA 都支持将邮箱作为管道,例如 sendmail、postfix 和 qmail。通常,您在别名文件中定义它,如下所示:
# sendmail 或后缀语法
msgsubmit: "| /usr/bin/php ~path/to/example.php"
然后发送到 msgsubmit@ 的邮件被路由到一个 php 程序进行传递。
这样做的好处是不依赖于 IMAP 服务器或 MTA 之外的任何其他服务器处于活动状态,并且只要您可以控制目标主机的 MTA,它就可以正常工作。如果您希望脚本检查系统上的所有消息,那么过滤就是您想要的,我猜事实并非如此。
如果您希望将副本保存在某处的邮箱中(不是一个坏主意),只需定义别名以转到多个地址,如下所示:
msgsubmit: "| /usr/bin/php ~path/to/example.php", msgsubmit-box
或后缀虚拟格式:
msgsubmit
"| /usr/bin/php ~path/to/example.php"
msgsubmit-box
您是否考虑过使用 Google 的Picasa 网络相册?您可以设置一个电子邮件地址来发送照片并在线共享它们。然后,您可以获得这些照片的 RSS 提要,大多数程序员比 MTA 更熟悉这些提要。
你用的是什么MTA?如果您使用 postfix + maildrop,您可以创建一个过滤规则,通过 PHP 脚本处理某些消息,然后处理传入的邮件。(谷歌邮件投递和xfilter
)。
Majordomo
,可能是处理电子邮件的替代方法,但文件附件处理存在一些限制。
<?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:我使用了这个代码。希望它的工作和帮助你。只需复制和粘贴。确保您的文本字段名称与此页面中的相同。它适用于所有类型的文件。如有其他问题,请通过 shah 给我发电子邮件@mc-oren.com.anyway,我也在学习过程中。=)谢谢。