首页  >  文章  >  后端开发  >  如何使用 PHP 在电子邮件中发送多个文件附件?

如何使用 PHP 在电子邮件中发送多个文件附件?

Susan Sarandon
Susan Sarandon原创
2024-11-02 18:21:02359浏览

How to Send Multiple File Attachments in Emails Using PHP?

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

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn