如何在 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中文网其他相关文章!