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!
This commit is contained in:
Emi Matchu 2024-02-24 12:16:25 -08:00
parent c3529450bf
commit 6a6901ae39

View file

@ -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),
);
}