fopen多个文件用mail()php发送邮件

时间:2015-06-13 10:36:59

标签: php email send multiple-files

我在使用mail()php发送包含多个文件的邮件时遇到问题。到现在为止,只发送第一个文件,所以我需要你的帮助。给你我的代码:

HTML:

<form action="colabora.php" method="post" enctype="multipart/form-data">

[...]

<div id="adjuntos">
<input type="file" name="archivos[]" class="form-control"/>
</div>

[...]

PHP:

[...]

if (isset ($_FILES["archivos"])) {
  $tot = count($_FILES["archivos"]["name"]);
  for ($i = 0; $i < $tot; $i++){
    $_name=$_FILES["archivos"]["name"][$i];
    $_type=$_FILES["archivos"]["type"][$i];
    $_size=$_FILES["archivos"]["size"][$i];
    $_temp=$_FILES["archivos"]["tmp_name"][$i]; 

    //FILES EXISTS
    if(strcmp($_name, "")){
      $fp = fopen($_temp, "rb");
      $file = fread($fp, $_size);
      $file = chunk_split(base64_encode($file)); 
    }

    // FILES HEADERS 
    $headers .= "Content-Type:application/octet-stream ";
    $headers .= "name=\"".$_name."\"r\n";
    $headers .= "Content-Transfer-Encoding: base64\r\n";
    $headers .= "Content-Disposition: attachment; ";
    $headers .= "filename=\"".$_name."\"\r\n\n";
    $headers .= "".$file."\r\n";
    $headers .= "--".$num."--";
  }
}

[...]

邮件($ para,$ asunto,$ body,$ headers)

2 个答案:

答案 0 :(得分:1)

我注意到你在每次附件前丢失了一个边界。

// FILES HEADERS 
$headers .= "--".$num."\r\n";  // Boundary
$headers .= "Content-Type:application/octet-stream ";
$headers .= "name=\"".$_name."\"r\n";
$headers .= "Content-Transfer-Encoding: base64\r\n";
$headers .= "Content-Disposition: attachment; ";
$headers .= "filename=\"".$_name."\"\r\n\n";
$headers .= $file."\r\n";

结束边界(以“ - ”结尾)应放在循环之外:

$headers .= "--".$num."--\r\n";

答案 1 :(得分:0)

这里有一些东西导致它。在文件后显示$ body的内容:

fooCounter.stop();