如何在PHP 中將多個文件附加到一封電子郵件
在PHP 中,您可以將多個文件附加到一封電子郵件並同時發送。這對於共享大型或重要文件非常有用。
多部分 MIME 格式
要將多個文件附加到電子郵件,您需要使用多部分 MIME 格式。 MIME(多用途網路郵件擴充)可讓您在單一電子郵件中傳送不同類型的資料。
多個檔案附件的PHP 程式碼
以下是PHP 程式碼範例示範如何將多個檔案附加到電子郵件:
<code class="php">if ($_POST) { // Get the file names $files = $_FILES['csv_file']['name']; // Email fields $to = "[email protected]"; $from = "[email protected]"; $subject = "My subject"; $message = "My message"; $headers = "From: $from"; // Boundary $semi_rand = md5(time()); $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; // Headers for attachment $headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\""; // Multipart boundary $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"; $message .= "--{$mime_boundary}\n"; // Preparing attachments foreach ($files as $file) { $file_data = file_get_contents($file); $file_data = chunk_split(base64_encode($file_data)); $message .= "Content-Type: {\"application/octet-stream\"};\n" . " name=\"$file\"\n" . "Content-Disposition: attachment;\n" . " filename=\"$file\"\n" . "Content-Transfer-Encoding: base64\n\n" . $file_data . "\n\n"; $message .= "--{$mime_boundary}\n"; } // Send the email $ok = @mail($to, $subject, $message, $headers); if ($ok) { echo "<p>mail sent to $to!</p>"; } else { echo "<p>mail could not be sent!</p>"; } } ?></code>
用於檔案上傳的HTML 表單
此程式碼可以與允許的HTML 表單結合使用使用者選擇多個檔案:
<code class="html"><form action="#" method="POST" enctype="multipart/form-data"> <input type="file" name="csv_file[]" /><br/> <input type="file" name="csv_file[]" /><br/> <input type="file" name="csv_file[]" /><br/> <input type="submit" name="upload" value="Upload" /><br/> </form></code>
必須在表單中新增enctype="multipart/form-data" 屬性才能啟用檔案上傳。
透過實作這些方法,您可以輕鬆將多個文件附加到電子郵件並透過 PHP 腳本發送它們。
以上是如何使用 PHP 在電子郵件中傳送多個文件附件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!