1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <html>
<head>
<title>Envoi de la newsletter...</title>
<?
// Fichier newsletter.php
$coup = 50;
$tranche = @$_GET['tranche'];
for($i = $tranche; $i < $tranche + $coup; $i++) {
// Envoi du mail n°$i
// ...
if($i > $nbdemail)
die("Envois terminés !");
}
echo "<meta http-equiv='refresh' content='2;URL=newsletter.php?tranche=" . ($tranche + $coup) . "'>"; // Dit au naviagteur de passser à la tranche suivante 2 secondes aprés la fin de l'exécution du script (de l'envoi des mails ?)
?>
</head>
<body>
Loading <?= $tranche + $coup ?>...
</body>
</html> |