Files
pfadi-bussle/helpers/mail.js
Thomas Ruoff d86f438f80 send mail
2020-08-18 00:22:03 +02:00

34 lines
869 B
JavaScript

const SENDGRID_API_KEY = process.env.SENDGRID_API_KEY
const SENDGRID_URL = 'https://api.sendgrid.com/v3/mail/send'
const BOOKING_ADMIN_EMAIL = 'tomru@mail.id0.link'
const FROM_EMAIL = 'thomasruoff@gmail.com'
async function sendMail(data) {
const response = await fetch(SENDGRID_URL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${SENDGRID_API_KEY}`,
},
body: JSON.stringify(data),
})
return response.json()
}
export async function sendReceivedBookingMail(booking) {
const data = {
personalizations: [
{
to: [{ email: BOOKING_ADMIN_EMAIL }],
},
],
from: { email: FROM_EMAIL },
subject: 'Pfadi Bussle - Buchung eingegangen!',
content: [
{ type: 'text/plain', value: `${JSON.stringify(booking, null, 4)}` },
],
}
await sendMail(data)
}