Problem:
The PHP code provided initially allows the attachment and sending of only a single file. However, the need arises to attach and send two files simultaneously, typically in different formats (e.g., RAR and PDF).
Solution:
To send multiple attachments in an email using PHP, modify the code as follows:
<br>$files = ['path/to/example.rar', 'path/to/example.pdf']; // Array of file paths</p> <p>// ...</p> <p>for($x=0;$x<count($files);$x ){</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">$file = fopen($files[$x],"rb"); $data = fread($file,filesize($files[$x])); fclose($file); $data = chunk_split(base64_encode($data)); $message .= "Content-Type: {\"application/octet-stream\"};\n" . " name=\"$files[$x]\"\n" . "Content-Disposition: attachment;\n" . " filename=\"$files[$x]\"\n" . "Content-Transfer-Encoding: base64\n\n" . $data . "\n\n"; $message .= "--{$mime_boundary}\n";
}
Explanation:
The above is the detailed content of How to Attach Multiple Files to an Email Using PHP?. For more information, please follow other related articles on the PHP Chinese website!