Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm attempting to build an email blast that can optionally include an attachment. I had the code working previously sans attachment but including the attachment doesn't seem to work. This is what I have:

<?php
if(isset($_POST['submit']))
{

    $output = '<h1>Successfully sent your message.</h1>';

    $flags = 'style="display:none;"';

   include 'connection.php';
   $query = "select * from login";
   $result = mysql_query($query) or die(mysql_error());
   $num_results = mysql_num_rows($result);
   if ($num_results !="")
   {
        for ($i=0;$i<$num_results;$i++)
        {
             $row = mysql_fetch_array($result);
             $email = stripslashes($row['email']);
              $to = "Undisclosed Recipients";
             $subject = strip_tags($_POST['subject']);

            $message = strip_tags($_POST['message']);
            $attachment = chunk_split(base64_encode(file_get_contents($_FILES['file']['tmp_name'])));
            $filename = $_FILES['file']['name'];

            $boundary =md5(date('r', time())); 
            $headers = "From: admin@website.com\r\n" . "Bcc: " . $email; 
            $headers .= "\r\nMIME-Version: 1.0\r\nContent-Type: multipart/mixed; boundary=\"_1_$boundary\"";

            $message="This is a multi-part message in MIME format.

            --_1_$boundary
            Content-Type: multipart/alternative; boundary=\"_2_$boundary\"

            --_2_$boundary
            Content-Type: text/plain; charset=\"iso-8859-1\"
            Content-Transfer-Encoding: 7bit

            $message

            --_2_$boundary--
            --_1_$boundary
            Content-Type: application/octet-stream; name=\"$filename\" 
            Content-Transfer-Encoding: base64 
            Content-Disposition: attachment 

            $attachment
            --_1_$boundary--";

            mail($to, $subject, $message, $headers);
        }
   }


}

?>

share|improve this question

closed as not a real question by casperOne May 15 '12 at 11:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

It looks like your multiline assignment to the $message variable should use HEREDOC syntax to work correctly. See here for more info. For example:

$message = <<<EOFTEXT
  ....your stuff goes here...
  .... and here....
  .... etc.....
EOFTEXT;

Also, you may want to rather use a library such as PHPMailer. It will take care of all the nitty-gritty details.

share|improve this answer
Are you the real Ryan Bates? – beck03076 May 14 '12 at 19:08
1  
I am a Ryan Bates, and a real Ryan Bates. Probably not the 'the real Ryan Bates' you are looking for... ;) – Ryan May 14 '12 at 21:44
hahaha!. Is this you? media.railscasts.com/resources/ryan_bates.png – beck03076 May 14 '12 at 21:47
Nope, not me. But that Ryan Bates does do good work! – Ryan May 14 '12 at 21:49
Im his greatest fan, without him my business is nothing!!!!. Watch www.railscasts.com – beck03076 May 14 '12 at 21:52

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