const numbers = [
"905XXXXXXXXX",
"905YYYYYYYYY",
"905ZZZZZZZZZ"
];
const message = "Merhaba, nakliye hizmetlerimiz hakkında bilgi almak ister misiniz?";
let index = 0;
function sendNext() {
if (index >= numbers.length) {
console.log("✅ Tüm numaralar açıldı");
return;
}
const phone = numbers[index];
const url = `https://web.whatsapp.com/send?phone=${phone}&text=${encodeURIComponent(mess age)}`;
window.open(url, "_blank");
console.log(`📤 Açıldı: ${phone}`);
index++;
// Her numara için 10 saniye bekle
setTimeout(sendNext, 10000);
}
sendNext();
bunu bir html sayfasına yapıştır çalışıtır .