-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.js
51 lines (45 loc) · 1023 Bytes
/
handler.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
'use strict'
const aws = require('aws-sdk')
const SES = new aws.SES({ region: 'eu-west-1' })
const sendError = (status, message) => ({
statusCode: status,
body: JSON.stringify({ message })
})
module.exports.dispatchEmail = async event => {
const { to, subject, message, from } = JSON.parse(event.body)
const token = event.headers['X-Token']
if (!token || token !== process.env.TOKEN) {
return sendError(401, 'Unauthorized')
}
if (!to || !subject || !message || !from) {
return sendError(400, 'Invalid POST body')
}
const params = {
Destination: {
ToAddresses: [to]
},
Message: {
Body: {
Text: {
Data: message
}
},
Subject: {
Data: subject
}
},
Source: from
}
try {
await SES
.sendEmail(params)
.promise()
} catch(e) {
console.error(e)
return sendError(500, 'Internal server error')
}
return {
statusCode: 200,
body: JSON.stringify({ message: 'Email sent' }),
}
}