带有多个文件附件插件的php邮件表单

时间:2011-11-30 20:13:14

标签: php jquery attachment

<p><input type="file" name="file[]" class="multi" accept="gif|jpg"/></p>

通过上述内容,我可以在$ _FILES中获得所有结果。然而,图片似乎没有通过foreach循环。

<p><input type="file" name="file1" class="multi" accept="gif|jpg"/></p>
<p><input type="file" name="file2" class="multi" accept="gif|jpg"/></p>

当像上面这样做时,代码确实有效 - 循环似乎运行得很好。我已搜索过多个文件插件以及如何使其工作。虽然我很肯定我用我的方法忽略了foreach循环中的错误。

这是代码:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>E-mail with Attachment</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"        
language="javascript"></script>
<script src="jquery.MultiFile.js" type="text/javascript" language="javascript">   
</script>

</head>
<body>
<?php
if ($_SERVER['REQUEST_METHOD']=="POST"){

$to="you@mail.com";
$subject="E-mail with attachment";

$from = stripslashes($_POST['fromname'])."<".stripslashes($_POST['fromemail']).">";

$mime_boundary="==Multipart_Boundary_x".md5(mt_rand())."x";

$headers = "From: $from\r\n" .
"MIME-Version: 1.0\r\n" .
  "Content-Type: multipart/mixed;\r\n" .
  " boundary=\"{$mime_boundary}\"";

$message="This is an example";

$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){

  $tmp_name = $userfile['tmp_name'];
  $type = $userfile['type'];
  $name = $userfile['name'];
  $size = $userfile['size'];


  if (file_exists($tmp_name)){

     if(is_uploaded_file($tmp_name)){

        $file = fopen($tmp_name,'rb');

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

        fclose($file);

        $data = chunk_split(base64_encode($data));
     }

     $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";
   }
   }


 // here's our closing mime boundary that indicates the last of the message
 $message.="--{$mime_boundary}--\n";
 // now we just send the message
 if (@mail($to, $subject, $message, $headers))
  print_r($_FILES);
 else
  echo "Failed to send";
 } else {
?>
<p>Send an e-mail with an attachment:</p>
 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" 
  enctype="multipart/form-data" name="form1">
  <p>Your name: <input type="text" name="fromname"></p>
  <p>Your e-mail: <input type="text" name="fromemail"></p>
  <p>Mod List: <textarea  name="question" maxlength="1000" cols="25" rows="6"   
   name="modlist"></textarea>
  <p><input type="file" name="file[]" class="multi" accept="gif|jpg"/></p>
  <p><input type="submit" name="Submit" value="Submit"></p>
  </form>
  <?php } ?>
  </body>
  </html>

插件:

http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Uploading

希望这是我在foreach循环中忽略的一个小错误,提前感谢。

0 个答案:

没有答案