I have been trying to encode an image as base64 then sent it as an email attachment using php mail(), but all I am getting is the base64 text in my email. Here is what I am using:

$boundary1 = 'bound1';
$boundary2 = 'bound2';
$to = 'test@me.com';  
$subject = 'Test Image attachment'; 
$headers = 'From: "Me" <me@myemail.com>'."\r\n"; 
//add boundary string and mime type specification 
$headers .= "MIME-Version: 1.0\r\n"; 
$headers .= "Content-Type: multipart/mixed; boundary=\"$boundary1\""; 
//define the body of the message. 
$message = 'Content-Type: image/png; name="'.$file_name.'"'."\n"; 
$message .= "Content-Transfer-Encoding: base64\n"; 
$message .= "Content-Disposition: inline; filename=\"$file_name\"\n\n";
$message .= base64_encode_image("signature_files/".$file_name, 'png')."\n";
$message .= "--" . $boundary2 . "\n";
//send the email 
mail( $to, $subject, $message, $headers);

// Function to encode an image
function base64_encode_image($filename=string,$filetype=string) {
    if ($filename) {
        $imgbinary = fread(fopen($filename, "r"), filesize($filename));
        return 'data:image/' . $filetype . ';base64,' . chunk_split(base64_encode($imgbinary), 64, "\n");
    }
}

Does anyone see anything wrong with this code? Really not sure why I am just see RAW text when I recieve the email.

link|improve this question

1  
Don't build your own mime emails. use Swiftmailer or PHPMailer and save yourself all of this hassles. They both do attachments and inline images with ease, – Marc B Aug 11 '11 at 18:36
@Marc - It is a great idea, but I don't have the luxury on this project. – Nic Hubbard Aug 11 '11 at 18:39
feedback

1 Answer

You are mixing \r\n and \n\n in your message headers and MIME attachment part headers respectively. Try changing them all to \r\n.

Another possibility - if you are trying to attach the image, rather than display inline, use Content-disposition: attachment;

$message .= "Content-Disposition: attachment; filename=\"$file_name\"\n\n";
link|improve this answer
Fixed those things and am still having the issue. – Nic Hubbard Aug 11 '11 at 18:43
@Nic Are you certain it's not your base64_encode_image() function? Try using plain base64_encode() to return the raw image instead. – Michael Aug 11 '11 at 19:44
I actually thought it might be that, so I did what you suggested and it still doesn't work. – Nic Hubbard Aug 12 '11 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.