Email im Anhang mehrere Bilder

crazy_chicken

Erfahrenes Mitglied
Hallo Zusammen,

ich will in einer Email mehrere Bilder Anhängen (eine Klappt einwandfrei):

PHP:
$dateinhalt_1 = fread(fopen($dateiname_1, "r"), filesize($dateiname_1)); 
$kopf .= "\nContent-Type: image/$format; name=$dateiname_mail_1\n"; 
$kopf .= "Content-Transfer-Encoding: base64\n"; 
$kopf .= "Content-Disposition: attachment; filename=$dateiname_mail_1\n\n";
$kopf .= chunk_split(base64_encode($dateinhalt_1)); 
$kopf .= "\n--$id--";


Wie soll ich es machen, wenn ich genauso noch ein anderes Bild anhängen möchte?



Danke im Voraus an alle! :)
 
Zurück