Sending email with multiple attachments with PHP
Today I was looking for a cut/paste script to manage emails with multiple attachments with php and I only found classes, server-side libraries or non-working examples (!!!).
I just needed an easy script and I did not find it… so I cut/pasted here and there, I changed something, shaked a bit and here it is an easy and working script.
Just fill $files array with the files to be sent, custom email fields and you’re done.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | <?php // array with filenames to be sent as attachment $files = array("file_1.ext","file_2.ext","file_3.ext",......); // email fields: to, from, subject, and so on $to = "mail@mail.com"; $from = "mail@mail.com"; $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 for($x=0;$x<count($files);$x++){ $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"; } // send $ok = @mail($to, $subject, $message, $headers); if ($ok) { echo "<p>mail sent to $to!</p>"; } else { echo "<p>mail could not be sent!</p>"; } ?> |
Enjoy and send mails with any number of attachments without any class/library
37 Responses to “Sending email with multiple attachments with PHP”
Leave a Reply
Trackbacks
-
MySQL to JSON with PHP : Emanuele Feronato on
September 23rd, 2009 11:07 pm
[...] a everyday use function, but I am sure some of you will find it useful, just like it happened with Sending email with multiple attachments with PHP. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 function [...]
- Citrus Engine released for free for learning
- My epic fail with ClickBank
- Get up to $100,000 for your next Flash game with Mochi GAME Developer Fund
- Create a dynamic content animated footer ad for your site in just 9 jQuery lines – 17 lines version
- Sell sitelocked version of your Flash games and even .fla sources to Free Online Games
- Protect your work from ActionScript code theft with SWF Protector
- Create a dynamic content animated footer ad for your site in just 9 jQuery lines
- Understanding Box2D’s one-way platforms, aka CLOUDS
- Triqui MochiAds Arcade plugin for WordPress upgraded to 1.2
- Box2D Flash game creation tutorial – part 2
- Create a Lightbox effect only with CSS - no javascript needed
- Flash game creation tutorial - part 1
- Create a Flash Racing Game Tutorial
- Flash game creation tutorial - part 2
- Make a Flash game like Flash Element Tower Defense - Part 2
- Flash game creation tutorial - part 3
- Triqui MochiAds Arcade plugin for WordPress official page
- Make a Flash game like Flash Element Tower Defense - Part 1
- Create a flash draw game like Line Rider or others - part 1
- Create a flash artillery game - step 1
- Flash game creation tutorial – part 5.2 (4.88/5)
- Create a flash artillery game – step 1 (4.79/5)
- Create a Flash Racing Game Tutorial (4.76/5)
- Create a survival horror game in Flash tutorial – part 1 (4.74/5)
- Create a flash artillery game – step 2 (4.74/5)
- Creation of a Flash arcade site using WordPress – step 2 (4.73/5)
- Flash game creation tutorial – part 1 (4.71/5)
- Flash game creation tutorial – part 2 (4.71/5)
- Create a flash draw game like Line Rider or others – part 1 (4.69/5)
- Creation of a platform game with Flash – step 2 (4.68/5)

(31 votes, average: 4.29 out of 5)



You have to be careful with the mail function.
Some free hosts disable it.
I would also appreciate how to send those mails right from the form – especialy how to attach multiple files and then send them.
Hey, its a nice script but how to attach files at run time?
A perfect script. I was quite fagged out trying to correct a code sending a single attachment and got no where. Great work.
It would be great to know how to make form for uploading files and storing in this array. I am beginner in PHP. Anyone help, please?
Thanks for the multiple attachments code. I found what appears to be a problem with it though. For the very last file, I think you need a “–” at the end of the mime boundary hash; i.e., “–{$mime_boundary}–\n”. Otherwise, I get an extra empty file attached to the email called “ATT000??.txt”.
Godd Example to send multiple attachment in PHP
thank you very much for your help
Thank You … It is really helpful for my project … thanx lots ..
hey
I cant get it to work , what do I need to do with it
btw I am sort of new to php
pleas help me anyone
The script works great except for one thing.
I always get an extra file “ATT000XX.txt” that is empty.
I trying adding “-” to the end of “–{$mime_boundary}”. I added it to just the one in the loop, out of the loop and every combination in between.
Nothing seems to work.
How do I get that file to not be attached?
Thanks.
I had the same experience, especially with examples that didn’t work or corrupt attachments, until I found your code.
Thans a lot !!!
gr8 work ! but there is problem of extra file “ATT000XX.txt”.
i found a way in which we can solve this problem as follows;
$just=count($files);
for($x=0;$x<count($files);$x++){
$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”;
if($x==($just-1))
{
$message .= “–{$mime_boundary}-\n”;
} else
{
$message .= “–{$mime_boundary}\n”;
}
}
replace the for loop with this code
$just=count($files);
for($x=0;$x<count($files);$x++){
$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”;
if($x==($just-1))
{
$message .= “–{$mime_boundary}-\n”;
} else
{
$message .= “–{$mime_boundary}\n”;
}
}
Line 10 can be skipped because of line 21.
this worked for me butt i get that extra file
strange thing in windows mail there is no extra file
in outlook i got it
i tray Umesh thing butt then i got only one attachment
i include 3 of them
this worked for me butt i get that extra file
strange thing in windows mail there is no extra file
in outlook i got it
i tray Umesh thing butt then i got only one attachment
i include 3 of them
instead of –{$mime_boundary}\n this use
–-{$mime_boundary}–\n
instead of –{$mime_boundary}\n this use
–-{$mime_boundary}–-\n
I am having issues with multiple attachments. Only the fist one is getting attached while the other files aren’t. Any ideas?
I also had issues with an extra attachment, but this did solve the problem:
Original:
Line 33:
$message .= “–{$mime_boundary}\n”;
FIX:
$message .= “–{$mime_boundary}–\n”;
Hmm, for some reason, WordPress combines 2 hashes “- -” into one hash: “–”
So to clarify, you want 2 hashes before and after {$mime_boundary}
Thanks Emanuele!!! Great script. Since a lot of people above seem to be having the same problem and I solved said problem, I will show my improved version that worked for me with 0 attachments, 1 attachment and more than 1 attachment without the extra txt file or gibberish at the end. Maybe u can re-post this if u get a chance.
<?php
// array with filenames to be sent as attachment
$files = array("filename.blah", "filename.blah");
$filecount=count($files);
// email fields: to, from, subject, and so on
$to = "blah@blah.com";
$from = "blah@blah.com";
$subject ="testemail";
$message = "testing if the script i downloaded works";
$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";
if($filecount!=0)
{
$message .= "–{$mime_boundary}\n";
}
// preparing attachments
for($x=0;$x<$filecount;$x++)
{
$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";
if($x==$filecount-1)
{
$message .= "–{$mime_boundary}-\n";
}
else
{
$message .= "–{$mime_boundary}\n";
}
}
// send
$ok = @mail($to, $subject, $message, $headers);
if ($ok)
{
echo "mail sent to $to!”;
}
else
{
echo “mail could not be sent!”;
}
?>
Hi,
This code works but the initial problem was that it was attaching the empty text file but i used the new code like here specified i replaced the loop with that just variable and even the last code
<?php
// array with filenames to be sent as attachment
$files = array("filename.blah", "filename.blah");
$filecount=count($files);
// email fields: to, from, subject, and so on
$to = "blah@blah.com";
$from = "blah@blah.com";
$subject ="testemail";
$message = "testing if the script i downloaded works";
$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";
if($filecount!=0)
{
$message .= "–{$mime_boundary}\n";
}
// preparing attachments
for($x=0;$x
the extra txt file is removed but it is attaching only one file not all the files name that i gave in the array please provide me the solution for that so that it will attach all the files without extra txt file.
Try this it really works on my side.
$value){
$ctr_file++;
$att_file = $_FILES[$idx]['tmp_name'];
$att_file_type = $_FILES[$idx]['type'];
$att_file_name = $_FILES[$idx]['name'];
if (is_uploaded_file($att_file)) {
// Read the file to be attached (‘rb’ = read binary)
$file = fopen($att_file,’rb’);
$data = fread($file,filesize($att_file));
fclose($file);
// Base64 encode the file data
$data = chunk_split(base64_encode($data));
// Add file attachment to the message
$message .= “Content-Type: {$att_file_type};\n” .
” name=\”{$att_file_name}\”\n” .
“Content-Disposition: attachment;\n” .
” filename=\”{$att_file_name}\”\n” .
“Content-Transfer-Encoding: base64\n\n” .
$data . “\n\n”;
$message .= ($ctr_file != count($_FILES)) ? “–{$mime_boundary}\n” : “–{$mime_boundary}–\n”;
}
}
echo mail($to,$subject,$message,$headers) ? ‘mail sent with attached files’ : ‘mail not sent!’;
}
?>
Simply superb.. its wrkin fine dude…
HI, can any one hellp me out, I have mentioned the following code, we are reciving an email with the text format – ATT0029.txt , the following code as mentioned, we are trying to attach a word format and submit
/ Build email data
// generate a random string to be used as the boundary marker
$mime_boundary = “==Multipart_Boundary_x”.md5(mt_rand()).”x”;
// open the file for a binary read
$file = fopen($this->attachment, ‘rb’);
// read the file content into a variable
$data = fread($file, filesize($this->attachment));
// close the file
fclose($file);
// now we encode it and split it into acceptable length lines
$data = chunk_split(base64_encode($data));
$file_name = explode(“\\”, $this->attachment );
// now we’ll build the message headers
$headers = “From: $from\r\n” . “MIME-Version: 1.0\r\n” . “Content-Type: multipart/mixed;\r\n” . ” boundary=\”{$mime_boundary}\”";
// next, we’ll build the message body
// note that we insert two dashes in front of the
// MIME boundary when we use it
$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_body . “\n\n”;
// now we’ll insert a boundary to indicate we’re starting the attachment
// we have to specify the content type, file name, and disposition as
// an attachment, then add the file content and set another boundary to
// indicate that the end of the file has been reached
$message .= “–{$mime_boundary}\n” . “Content-Type: text/plain;\n” . ” name=\”{$file_name[1]}\”\n” .
“Content-Disposition: attachment;\n” .
// ” filename=\”{$fileatt_name}\”\n” .
“Content-Transfer-Encoding: base64\n\n” . $data . “\n\n” . “–{$mime_boundary}–\n”;
Please help me out with the solution
It doesnt work at all, sometimes it adds 2 attachment other times nothing. The code of Wilson Abesamis is not complete, pls send the complete code
THanks
Dabby
works.. but attachment recieves like text
I made to changes to the original
replace line 22 with:
if (count($files)){
$message .=”–{$mime_boundary}\n”;
}
else{
$message .=”–{$mime_boundary}–\n”;
}
replace line 33 with:
if ($x==count($files)-1){
$message .=”–{$mime_boundary}–\n”;
}
else{
$message .=”–{$mime_boundary}\n”;
}
this handles extra file problem and allows for no files or multiple files to be sent
Retool here ==You can leave lime 22 as is, but change lime 33 as mentioned above
How do I name the files to be attached with files which have been uploaded as part of a form to complete the following line?
(“file_1.ext”,”file_2.ext”,”file_3.ext”,……);
Nice Script… :)
Such a great script! Been testing script on the net for >10hrs without findng what I was looking for. Until now. Thanks from Sweden!
Oh forgot to say, if you want to send the message in html instead of plain text, just change Content-Type from text/plain to text/html.
file_get_contents() has been available since php 4.3.0 (release in 2002):
$data = chunk_split( base64_encode(file_get_contents(“$files[$x]“)) );
This looks like a great script and works fine, wit the exception of the extra empty attachment. Lots of people have suggested fixes, but it’s not very clear which fix actually work…would anyone who’s got the script to work be able to post the full amended script on here?
Many thanks :)
This is my modification which solved for me problem of unwanted file:
// preparing attachments
$counted = count($files);
for($x=0;$x<$counted;$x++){
$data = chunk_split( base64_encode(file_get_contents("$files[$x]")) );
$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";
if($x < $counted-1){
$message .= "–{$mime_boundary}\n";
}else{
$message .= "–{$mime_boundary}-\n";
}
}