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 french so excuse my accent. ;-) I'm working on a PHP script (based on AJAX Shopping Cart) since many weeks and i can't find correct answer to my problem. I explain : I have a drag and drop basket to select pictures from an image bank. When user set his email and click a button, he receives by email his selection of pictures.

Here is my problem : if there is 3 pictures in the basket, he receives 3 emails with 1 picture by email. If there is 12 589 pictures ... 12 589 email !!

I hope someone could help me or explain me why it's wrong.

Here is my (part of) code :

<?php

//////////////////////////////////////
// From Drag and Drop
//////////////////////////////////////

$cnt = array();
$products = array();
foreach($_POST as $key=>$value)
{
$key=(int)str_replace('_cnt','',$key);
$products[]=$key;
$cnt[$key]=$value;
}
$result = mysql_query("SELECT * FROM internet_shop WHERE id IN(".join($products,',').")");

if(!mysql_num_rows($result))
{
echo '<h2>Votre sélection est vide. Mais comment êtes vous arrivé(e) ici ? </h2><a href="contact.php">contactez-nous</a>';
}
else
{
echo '<h2>Votre sélection vous a été expédié à <span style="color:#4FACC1;">'.$_POST ['email'].'</span>.</h2>
<br/>
<h2 style="color:#4FACC1;">Détails de votre sélection</h2>
';
while($row=mysql_fetch_array($result))
{

//////////////////////////////////////
// Display selection
//////////////////////////////////////

echo '';
echo '  <span style="float:left;margin:10px;text-align: center;">
        <img src="'.$row['chemin'].'/'.$row['img'].'" 
        alt="'.htmlspecialchars($row['name']).'" 
        width="128" height="128" 
        class="pngfix" />
        <br/>
        '.$row['name'].'
        <b style="color:#4FACC1;font-size:9px;"> ('.$row['price'].' Ko)</b>
        </span>';
$total += $cnt[$row['id']] * $row['price'];

//////////////////////////////////////
// Variable
//////////////////////////////////////

$sujet_reportage = str_replace('/', ' : ', $row['chemin']);
$sujet_reportage = str_replace('_', ' ', $sujet_reportage);
$withpoutthunb = str_replace('thumb_', '', $row['img']);
$Photos = $row['chemin'].'/'.$withpoutthunb;
$selection = 'Votre sélection photo : '.$withpoutthunb;
$to = $_POST ['email'];
$from = "www.xxxxx.com"; 
$subject = $selection; 
$message = $sujet_reportage;
$headers = "From: $from";

//////////////////////////////////////
// array with filenames to be sent as attachment
//////////////////////////////////////

$files = array($Photos);

//////////////////////////////////////
// Frontière 
//////////////////////////////////////

$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";

if($x == (count($files)-1)) 
{
$message .= "–{$mime_boundary}–";
} 
else 
{
$message .= "–{$mime_boundary}\n";
}
}

//////////////////////////////////////
// send
//////////////////////////////////////

$ok = @mail($to, $subject, $message, $headers); 

//////////////////////////////////////
// End of while
//////////////////////////////////////

}

Thanks a lot.

share|improve this question
2  
The call to mail() is within the while loop that is looking at each record. What is your goal? Do you want to send all pictures in 1 email? Just build a message in the loop and once you get out of the loop, call mail(). – drew010 Apr 24 '12 at 18:18
consider using a mail library for PHP, there are quite a few to choose from, this will save you headaches later when your mail is being marked as spam, or other nuisances. – Jakub Apr 25 '12 at 14:52

3 Answers

As I mentioned use a library to make things easy on yourself: http://swiftmailer.org/

And then you would create code like so with attachments:

require_once 'lib/swift_required.php';

// Create the message
$message = Swift_Message::newInstance()

  // Give the message a subject
  ->setSubject('Your subject')

  // Set the From address with an associative array
  ->setFrom(array('john@doe.com' => 'John Doe'))

  // Set the To addresses with an associative array
  ->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))

  // Give it a body
  ->setBody('Here is the message itself')

  // And optionally an alternative body
  ->addPart('<q>Here is the message itself</q>', 'text/html')

  // Optionally add any attachments
  ->attach(Swift_Attachment::fromPath('my-document.pdf'))
  ;

Reference: http://swiftmailer.org/docs/messages.html

After making my own mail functions over the years, its really best to stick with a great library to do the work.

For your question, you would just repeat the attachment of the images:

->attach(Swift_Attachment::fromPath('image1.jpg'))
->attach(Swift_Attachment::fromPath('image2.jpg'))
->attach(Swift_Attachment::fromPath('image3.jpg'))
share|improve this answer

Thanks for your help ! I finally use the http://swiftmailer.org/ lib. And it works perfectly !

To send multi attached mail with swiftmailer, i do like this (post for those who search):

//////////////////////////////////////
// Appel de la librairie Mail
//////////////////////////////////////

require_once 'lib/swift_required.php';

... votre appel en base (ou autre)

//////////////////////////////////////
// array with filenames to be sent as attachment
//////////////////////////////////////

$fichiers[] = $Photos;

//////////////////////////////////////
// DECLARE LES VARIABLES
//////////////////////////////////////

$mail = $_POST ['email'];
$from = "Your name"; 

//////////////////////////////////////
// Fermeture du while
//////////////////////////////////////


}

//////////////////////////////////////
// Construction du message
//////////////////////////////////////

$message = Swift_Message::newInstance()

//////////////////////////////////////
// Sujet du mail
//////////////////////////////////////

->setSubject('Votre sujet')

//////////////////////////////////////
// De
//////////////////////////////////////

->setFrom(array('xx@xxxx.com' => 'www.xxxx.xx'))

//////////////////////////////////////
// A
//////////////////////////////////////

->setTo($mail)

//////////////////////////////////////
// Contenu du mail
//////////////////////////////////////

->setBody($votre_contenu)

//////////////////////////////////////
// Contenu du mail (alternatif)
//////////////////////////////////////

->addPart('<q>'.$votre_contenu.'</q>', 'text/html')
;

//////////////////////////////////////
// Pieces jointes multiples
//////////////////////////////////////

foreach ($fichiers as $fichier)
{
$message->attach(Swift_Attachment::fromPath($fichier)) ;
}

//////////////////////////////////////
// Création du "moyen de transport"
//////////////////////////////////////

$transport = Swift_MailTransport::newInstance();

//////////////////////////////////////
// Envoi du mail
//////////////////////////////////////

$mailer = Swift_Mailer::newInstance($transport);
$result = $mailer->send($message);

//////////////////////////////////////
// Réponse de l'envoi
//////////////////////////////////////

if($result)
{
echo '<h2>Votre sélection vous a été expédié à '.$_POST ['email'].'.</h2>
<br/>';
}
else
{
echo 'Erreur';
}

Thanks a lot for all !

Regards

share|improve this answer

I come again to try to understand the array PHP's function. As i said in my previous message my code works. But when i try to copy this code to another part of my website using array, it doesn't works.

Since many days i try a lot of kind of syntaxe but nothing seams to work.

I hope another sight could help me to solve the problem. I explain :

THE GOAL To send by email with Swift_mailer attachment files.

THE WAY TO I receive path of the different files by post in an array(via simplecart.js modified script).

WHAT IS WORKING Files (pictures) appear in my web page so post is correctly receive.

WHAT IS NOT WORKING Swift_mailer send the email and display the confirmation result but not attach files.

HERE IS THE CODE

if(!$_POST)
{
    if($_SERVER['HTTP_REFERER'])
    header('Location : '.$_SERVER['HTTP_REFERER']);
    exit;
}
?>

<div class="container_mail">
    <div class="content-area1">
        <div class="content">
<?php

//////////////////////////////////////
// Call Swift_mailer
//////////////////////////////////////

require_once 'lib/swift_required.php';

//////////////////////////////////////
// Mail variables
//////////////////////////////////////

$mail = $_POST ['email'];
$from = "xxxxxx"; 

//////////////////////////////////////
// Weight of the pictures
//////////////////////////////////////

$poidstotal = $_POST['jctotal'];

//////////////////////////////////////
// Start display
//////////////////////////////////////

echo '
<h2 style="color:#4FACC1;">Details of your sélection</h2>
';
echo '<ul id="gallery" class="clearfix">';

//////////////////////////////////////
//Receive data to display
//////////////////////////////////////

$photos = $_POST['photos'];
$photos = explode('%',$photos,-1);

//////////////////////////////////////
//Foreach data received
//////////////////////////////////////

foreach ($photos as $photo) 
{

//////////////////////////////////////
// Storing different data
//////////////////////////////////////

$resulte = mysql_query("
INSERT 
INTO 
xxx 
(id, email_client, xx, yy, zz, images)
VALUES 
( 
'', 
'".mysql_real_escape_string($_POST ['email'])."', 
'".mysql_real_escape_string($xx)."', 
'".mysql_real_escape_string($yy)."', 
'".mysql_real_escape_string($zz)."', 
'".mysql_real_escape_string($photo)."'
) ");

//////////////////////////////////////
// Display pictures
//////////////////////////////////////

if(!empty($photo))
{
    $balisealt = str_replace('_',' ',$photo);
    $balisealt = str_replace('/thumb',' ',$balisealt);

    $photo = str_replace('thumb_','',$photo);
    $photo = str_replace(' ','',$photo);

    echo '';
    echo '  <li>
                <p style="min-height: 0px;overflow:hidden;">
                    <img    src="'.$photo.'" 
                            alt="'.htmlspecialchars($balisealt).'" 
                            width="98" height="98" 
                            class="pngfix" />
                </p>
            </li>
    ';
}

//////////////////////////////////////
// End of foreach
//////////////////////////////////////

}

//////////////////////////////////////
// End display
//////////////////////////////////////

echo '</ul>';

//////////////////////////////////////
// Text mail
//////////////////////////////////////

$selection = 'Your selection';

$message_mail = 'My message';

//////////////////////////////////////
// mail
//////////////////////////////////////

$contenu ='
    <body>
        <span>'.$message_mail.'</span>
    </body> 
';

//////////////////////////////////////
// Building message
//////////////////////////////////////

$message = Swift_Message::newInstance()

//////////////////////////////////////
// Subject
//////////////////////////////////////

->setSubject('xxxxxx')

//////////////////////////////////////
// From
//////////////////////////////////////

->setFrom(array('xxx@xxxxx.com' => 'xxxxxxx'))

//////////////////////////////////////
// To
//////////////////////////////////////

->setTo($mail)
->setBcc('noel@hautemaniere.com')

//////////////////////////////////////
// Mail content
//////////////////////////////////////

->setBody($contenu, 'text/html')

//////////////////////////////////////
// Mail content (alternative)
//////////////////////////////////////

->addPart('<q>'.$selection.'</q>', 'text/plain')
;

//////////////////////////////////////
// Attachments
//////////////////////////////////////

foreach ($fichiers as $fichier)
{
$message->attach(Swift_Attachment::fromPath($fichier)) ;
}

//////////////////////////////////////
// transporter (via function mail() php)
//////////////////////////////////////

$transport = Swift_MailTransport::newInstance();

//////////////////////////////////////
// Sending mail
//////////////////////////////////////

$mailer = Swift_Mailer::newInstance($transport);
$result = $mailer->send($message);

//////////////////////////////////////
// State of sending
//////////////////////////////////////

if($result)
{
echo 'Sending ok';
}
else
{
echo 'Error';
} 
?>
        </div>
    </div>
</div> 

As i said before, I hope someone could help me.

Thanks for all.

Regards

share|improve this answer
Ok, i found it ! My array comes from a javascript and need to be "clean" with trim(). – Fletcher May 9 '12 at 19:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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