Loading...
Dashboard _
Total Sent
—
all time
Active Domains
—
—
Recipients
—
email addresses
Scheduler
—
—
Recent Activity
Live Logs
Domain Management
Add Domain
Active Domains
| Domain | From | User | Status | Actions |
|---|---|---|---|---|
| Loading... | ||||
Recipient List
Add Recipient
💡 Nên dùng Gmail thật — người nhận reply lại sẽ tăng reputation nhanh hơn
Recipients
0
No recipients yet
Schedule Settings
Cron Schedule
Scheduler disabled
📋 Cron Reference
0 9 * * 1-5 → Mỗi ngày thứ 2-6 lúc 9:000 14 * * 1-5 → Mỗi ngày thứ 2-6 lúc 14:000 9 * * * → Mỗi ngày lúc 9:00 (kể cả cuối tuần)SMTP Settings
SMTP Server
PM2 Guide
ecosystem.config.js
// ecosystem.config.js
module.exports = {
apps: [{
name: 'warmup-dashboard',
script: 'server.js',
cwd: '/path/to/email-warmup',
instances: 1,
autorestart: true,
watch: false,
env: {
NODE_ENV: 'production',
PORT: 3099
}
}]
};
PM2 Commands
1. Copy ecosystem.config.js vào thư mục project
cp /path/to/ecosystem.config.js /path/to/email-warmup/
2. Start với PM2
cd /path/to/email-warmup pm2 start ecosystem.config.js
3. Tự khởi động khi reboot
pm2 save pm2 startup
4. Xem logs
pm2 logs warmup-dashboard pm2 status
5. Restart sau khi sửa config
pm2 restart warmup-dashboard
Truy cập Dashboard
Local:
http://localhost:3099Remote:
http://YOUR_VPS_IP:3099
⚠️ Nên dùng Nginx reverse proxy + basic auth để bảo mật nếu expose ra internet