-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
39 lines (29 loc) · 819 Bytes
/
server.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
const express = require('express');
const { createProxyMiddleware } = require('http-proxy-middleware');
const cors = require('cors');
const nodemailer = require('nodemailer');
const app = express();
app.use(cors());
app.use('/soc', createProxyMiddleware({
target: 'http://sis.rutgers.edu',
changeOrigin: true
}));
app.use(express.json());
app.post('/send-email', async (req, res) => {
let transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: '',
pass: ''
}
});
let mailOptions = {
from: '',
to: req.body.email,
subject: 'Course Status Update',
text: `The status for ${req.body.courseName} has changed to Open.`
};
let info = await transporter.sendMail(mailOptions);
res.send({ messageId: info.messageId });
});
app.listen(3001);