Visa ett inlägg
Oläst 2010-08-18, 10:08 #1
robincox robincox är inte uppkopplad
Flitig postare
 
Reg.datum: Aug 2008
Inlägg: 301
robincox robincox är inte uppkopplad
Flitig postare
 
Reg.datum: Aug 2008
Inlägg: 301
Question skicka php massmejl

Jag tänkte skicka iväg ett mejl till ca. 800 e-postadresser. Jag har skrivit en liten kodsnutt som ser till att skicka varje mejl separat:

$mejl[0] = [email protected]
$mejl[1] = [email protected]
$mejl[2] = [email protected]
...och så vidare till nr. 800...

for (i=0;i<=800;i++) {

$to = $mejl[$i];
$subject = "Hej";
$message = "Ett finfint meddelande";
$from = "[email protected]";
$headers = "From: $from";
mail($to,$subject,$message,$headers);

}

Det här borde väl vara ett säkert sätt att massmejla utan att bli svartlistad?
robincox är inte uppkopplad   Svara med citatSvara med citat