-
Notifications
You must be signed in to change notification settings - Fork 0
/
sender.js
75 lines (61 loc) · 2.11 KB
/
sender.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const fs = require('fs');
const pool = require('./db');
const nodemailer = require('nodemailer');
require('dotenv').config();
const period = process.env.period;
console.log("preiyot:",period);
console.log("mail ",process.env.EMAIL_ADDRESS)
const controller = require('./controller');
const fetchAllStudents=controller.fetchAllStudents;
// // Öğrenci verilerini alma
// const fetchAllStudents = async () => {
// try {
// const result = await pool.query('SELECT * FROM Ogrenci');
// return result.rows;
// } catch (err) {
// console.error('Hata:', err);
// throw err;
// }
// };
// E-posta ayarları
const transporter = nodemailer.createTransport({
service: 'gmail', // Gmail kullanımı
auth: {
user: process.env.EMAIL_ADDRESS, // Gönderen e-posta adresi
pass: process.env.EMAIL_PASS, // Gönderen e-posta uygulama şifresi
},
});
// Yedekleme ve raporlama fonksiyonu
const generateBackup = async () => {
const students = await fetchAllStudents();
const studentData = JSON.stringify(students, null, 2);
const backupFileName = `./yedeks/ogrenci-yedek2-${Date.now()}.json`;
const backupFilePath = `./${backupFileName}`;
fs.writeFileSync(backupFilePath, studentData);
// E-posta hazırlama
const emailOptions = {
from: '[email protected]', // Gönderen e-posta adresi
to: process.env.EMAIL_ADDRESS ,// Alıcı e-posta adresi
subject: `Haftalık Öğrenci Yedeği (${backupFileName})`,
text: 'Herkese merhaba, bu e-posta ekte haftalık öğrenci yedek dosyasını içerir.',
attachments: [
{
filename: backupFileName,
path: backupFilePath,
},
],
};
// E-posta gönder
try {
await transporter.sendMail(emailOptions);
console.log('Haftalık rapor başarıyla gönderildi!');
} catch (err) {
console.error('Haftalık rapor gönderilirken hata oluştu:', err);
} finally {
// fs.unlinkSync(backupFilePath);
}
};
// setInterval(generateBackup, 1000 * 60 * 60 * 24 * period);
setInterval(generateBackup, 1000 * 60*period);
generateBackup();
module.exports = generateBackup;