-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathserver.js
65 lines (55 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
const express = require('express');
const nodemailer = require('nodemailer');
const bodyParser = require('body-parser');
const cors = require('cors');
const axios = require('axios');
const app = express();
app.use(cors());
app.use(bodyParser.json());
const smtp2goApiKey = 'api-399C67225C9940649457600191474591'; // Your SMTP2GO API key
// Create email transporter for sending emails
const transporter = nodemailer.createTransport({
host: 'mail.smtp2go.com',
port: 587,
auth: {
user: 'temp55', // replace with your SMTP2GO username
pass: 'temp' // replace with your SMTP2GO password
}
});
// Create Account Endpoint
app.post('/create-account', async (req, res) => {
const { username, password } = req.body;
try {
const response = await axios.post('https://api.smtp2go.com/v1/users', {
username: username,
password: password
}, {
headers: {
'Authorization': `Bearer ${smtp2goApiKey}`,
'Content-Type': 'application/json'
}
});
res.status(200).send('Account created successfully: ' + response.data);
} catch (error) {
res.status(500).send('Error creating account: ' + error.response.data.message);
}
});
// Send Email Endpoint
app.post('/send-email', (req, res) => {
const { recipient, subject, message } = req.body;
const mailOptions = {
from: '[email protected]', // replace with your email
to: recipient,
subject: subject,
text: message,
};
transporter.sendMail(mailOptions, (error, info) => {
if (error) {
return res.status(500).send(error.toString());
}
res.status(200).send('Email sent: ' + info.response);
});
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});