-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
56 lines (41 loc) · 1.26 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const express = require("express");
const PORT = process.env.PORT || 3333;
const app = express();
// able to have a .env file to store sensible info without being public
require('dotenv').config();
const cors = require('cors');
app.use(cors());
// importing method to send email
const make_send_email = require("./module/");
// package to handle data from body
const bodyParser = require("body-parser");
// package being used
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
// checks for JSON malformatted messages
app.use((err, req, res, next) => {
if (err) {
res.status(409).json({
error: `Sorry, ERROR: ${err.message}`
});
}
else
next()
});
console.log("YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY");
const config = {
user: process.env.user,
password: process.env.password,
to: '[email protected]',
path: '/mail',
}
const send_email = make_send_email(config)
app.use(send_email);
// // the route to get email data from front-end
// app.post("/send_email", send_email);
// front-end being public and served
// app.get('*', (req, res) => {
// res.sendFile(path.join(__dirname, './public', 'index.html'))
// });
// server running
app.listen(PORT, () => console.log(`Server is running at ${PORT}`));