From 6a6901ae39ac783b8a9cd598dbe86d4841d8b2a2 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Sat, 24 Feb 2024 12:16:25 -0800 Subject: [PATCH] Send feedback emails to matchu@openneo.net I've reorganized my mailboxes a bit, and now I think it should 1) no longer break to send them here, and 2) help me keep things better organized! --- pages/api/sendFeedback.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/api/sendFeedback.js b/pages/api/sendFeedback.js index 3349c8b..80e9fb7 100644 --- a/pages/api/sendFeedback.js +++ b/pages/api/sendFeedback.js @@ -29,7 +29,7 @@ async function handle(req, res) { try { await sendgridMail.send({ - to: "matchu1993@gmail.com", + to: "matchu@openneo.net", from: "impress-2020-feedback@openneo.net", subject: `DTI feedback: ${contentSummary}`, replyTo: email || undefined, @@ -49,7 +49,7 @@ async function handle(req, res) { async function handleWithBeeline(req, res) { beeline.withTrace( { name: "api/sendFeedback", operation_name: "api/sendFeedback" }, - () => handle(req, res) + () => handle(req, res), ); }