| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/itms.arukustech.com/public/js-not-using/ |
Upload File : |
(function () {
let intervalId = null;
async function loadProgress() {
let campaignid = document.getElementById("campaignid").value;
if (campaignid > 0) {
let formData = new FormData();
formData.append("campaignid", campaignid);
const res = await fetch("mail_counter", {
method: "POST",
body: formData,
credentials: "same-origin"
});
const data = await res.json();
// Update UI
document.getElementById("total").innerText = data.total;
document.getElementById("sent").innerText = data.sent;
document.getElementById("failed").innerText = data.failed;
document.getElementById("queued").innerText = data.queue;
if(data.queue==0){
document.querySelector(".startsending").style.display = "none";
document.querySelector(".pausesmail").style.display = "none";
if(data.status !==''){
document.getElementById("status").innerText=data.status;
}
if(intervalId !== null) {
clearInterval(intervalId);
intervalId = null;
}
}
}
}
var status = document.getElementById("status").innerText;
if (status === 'queued' || status === 'sending') {
intervalId = setInterval(loadProgress, 5000);
}
})();