ss_website/app/api/sendgrid/route.ts

64 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-05-16 05:19:03 +00:00
import sendgrid from '@sendgrid/mail'
import { NextRequest, NextResponse } from 'next/server'
2024-08-17 05:08:03 +00:00
const { NEXT_PUBLIC_SENDGRID_API_KEY, NEXT_PUBLIC_RECAPTCHA_SECRET_KEY, AUTH0_CLIENT, AUTH0_SECRET } = process.env;
2024-05-16 05:19:03 +00:00
2024-08-17 05:08:03 +00:00
sendgrid.setApiKey(NEXT_PUBLIC_SENDGRID_API_KEY!)
2024-05-16 05:19:03 +00:00
export async function POST(req: NextRequest, res: NextResponse) {
const body = await req.json()
const { person, email, phone, subject, message, captcha } = body
if (!email || !captcha) {
return NextResponse.json(
{ message: 'Unproccesable request, please provide the required fields' },
{ status: 422 },
)
}
try {
const response = await fetch(
2024-08-17 05:08:03 +00:00
`https://www.google.com/recaptcha/api/siteverify?secret=${NEXT_PUBLIC_RECAPTCHA_SECRET_KEY}&response=${captcha}`,
2024-05-16 05:19:03 +00:00
{
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8',
},
method: 'POST',
},
)
const captchaValidation = await response.json()
if (captchaValidation.success) {
const formattedMessage = `
Name: ${person}\r\n
Email: ${email}\r\n
Phone: ${phone}\r\n
Subject: ${subject}\r\n
Message: ${message}
`
await sendgrid.send({
to: 'simplysyncedllc@gmail.com',
from: 'contact@simplysyncedllc.com',
subject: `[Simply Synced Contact Form]: ${subject}`,
text: formattedMessage,
html: formattedMessage.replace(/\r?\n/g, '<br />'),
})
return NextResponse.json(
{ message: 'Your message has been sent successfully!' },
{ status: 200 },
)
}
return NextResponse.json(
{ message: 'Unproccesable request, Invalid captcha code' },
{ status: 422 },
)
} catch (error) {
const errorMessage =
error instanceof Error ? error.message : 'Internal server error'
console.log(errorMessage)
return NextResponse.json({ message: errorMessage }, { status: 422 })
}
}