Copie cachée

Fermé
jicao Messages postés 48 Date d'inscription mercredi 26 février 2003 Statut Membre Dernière intervention 30 juin 2006 - 18 juin 2003 à 19:47
 Utilisateur anonyme - 18 juin 2003 à 22:11
bonjour voici le code demon fichier d'envoi de mail mais la les destinataires voit tous la liste de mes contact je voudrais que les destinataires soit en copie cachée
pouvez vous m'aider

code :

$boundary = "-----=".md5(uniqid(rand()));
$header = "MIME-Version: 1.0\r\n";
$header .= "Content-Type: multipart/mixed; boundary=\"$boundary\"\r\n";
$header .= "\r\n";
if ("$file1" == ''){
$msg = "\r\n";
$msg .= "--$boundary\r\n";
$msg .= "Content-Type: text/plain; charset=\"iso-8859-1\"\r\n";
$msg .= "Content-Transfer-Encoding:8bit\r\n";
$msg .= "\r\n";
$msg .= "$comment\r\n";
$msg .= "\r\n";
}
else{
$msg = "\r\n";
$msg .= "--$boundary\r\n";
$msg .= "Content-Type: text/plain; charset=\"iso-8859-1\"\r\n";
$msg .= "Content-Transfer-Encoding:8bit\r\n";
$msg .= "\r\n";
$msg .= "$comment\r\n";
$msg .= "\r\n";
$file = "$file1";
$fp = fopen($file, "rb");
$attachment = fread($fp, filesize($file));
fclose($fp);
$attachment = chunk_split(base64_encode($attachment));
$msg .= "--$boundary\r\n";
$msg .= "Content-Type: image/gif; name=\"$file\"\r\n";
$msg .= "Content-Transfer-Encoding: base64\r\n";
$msg .= "Content-Disposition: inline; filename=\"attach.gif\"\r\n";
$msg .= "\r\n";
$msg .= $attachment . "\r\n";
$msg .= "\r\n\r\n";
$msg .= "--$boundary--\r\n";
}
$destinataire = "$email";
$expediteur = "info@musichall.be";
$reponse = $expediteur;
mail( $destinataire, "$sujet", $msg, "nReply-to: $reponse\r\nFrom: $expediteur\r\n".$header);
echo"<center>La Mail a bien été envoyé<br>Merci</center>";
?>
</body>
</html>

     _                           _
_/   -*= JiC@0 =*-  \_
A voir également:

1 réponse

Utilisateur anonyme
18 juin 2003 à 22:11
Tu pourrais essayer d'envoyer plusieurs mails, comme ca pas de probleme mais bon, c'est pas ideal, je ne connais pas assez la fonction mail pour t'aider plus j'en ai peur (merci free :-( )

. .
\_/
0