Cho em hỏi là em muốn mặc định thứ sáu hằng tuần sẽ run function dưới đây trong javascript thuần thì làm như thế nào vậy ạ.
function getQuantityPendingAccount() {
fetch(WEB_API + "User/GetByStateUser?IDState=1")
.then(function (response) {
return response.json();
})
.then(function (response) {
let data = {
Subject: 'THÔNG BÁO DUYỆT CỘNG TÁC VIÊN',
Name: 'Thành viên',
Count: response.length
}
sendEmail(data)
})
}