Yaz çiz karala...
Toplu mail göndermenize yarayacak php bir döküman..
Lütfen spam için kullanmayın :D
< ?phpob_start();
$basla = $_GET["basla"] ? $_GET["basla"] : 0; // Kactan baslayacak?
$limit = 5; // Kac tanesıne gonderecek?
$bekle = 2; // Kac sanıye bekleyecek?
$konu = "Test";
$mesaj = "...";
$ustk = "From: xxx
$ustk .= "X-Sender:
$ustk .= "X-Mailer: PHP\\n";
$ustk .= "X-Priority: 3\\n";
$ustk .= "Return-Path:
$ustk .= "Content-Type: text/html; charset=iso-8859-9\\n";
if($dosya = (fopen("mail.txt",'r'))){
while(!feof($dosya)){
$satir = trim(fgets($dosya,50));
if($satir != "") $mail[] = $satir;
}
fclose($dosya);
for($i=$basla; $i<$basla+$limit; $i++){
if($mail[$i] != ""){
echo $mail[$i]."
";
mail($mail[$i], $konu, $mesaj, $ustk);
}
}
echo "
Gönderilen $basla, ".($basla+$limit)." arası toplam ".($basla+$limit)." mail. ";
if(count($mail) > ($basla+$limit)){
echo "Kalan ".(count($mail) - ($basla+$limit))." mail.";
header("refresh: $bekle; url=mail.php?basla=".($basla+$limit)); // Sayfayı yenıle
}
}else {
echo "Hata: Dosya açılamıyor.";
}
?>
Alıntı : Mail.php olarak kaydetmeniz yeterli..
tr0yan0.blogspot.com
Toplu mail göndermek PHP
27 Kasım 2008
Gönderen \x01 zaman: 01:16
Etiketler: mail, php, toplu mail
Kaydol:
Kayıt Yorumları (Atom)
0 yorum:
Yorum Gönder