From 53408ad124668c2f3b6a313f3da6a002bab5ca92 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Thu, 9 Apr 2026 16:39:16 -0400 Subject: [PATCH] Switch sender to hello@versebyversewithnate.us --- .env.example | 2 +- server.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index e0940c5..55cf6e1 100644 --- a/.env.example +++ b/.env.example @@ -20,4 +20,4 @@ RESEND_SEGMENT_ID= # "From" address shown on received emails. # During testing you can leave this as-is (uses Resend's shared domain). # For production: verify your own domain at resend.com/domains and change this. -RESEND_FROM=Verse by Verse with Nate +RESEND_FROM=Verse by Verse with Nate diff --git a/server.js b/server.js index 325aa3c..8eea8d0 100644 --- a/server.js +++ b/server.js @@ -155,7 +155,7 @@ app.post('/api/contact', contactRateLimit, async (req, res) => { } const { error } = await resend.emails.send({ - from: process.env.RESEND_FROM ?? 'Verse by Verse with Nate ', + from: process.env.RESEND_FROM ?? 'Verse by Verse with Nate ', to: [process.env.RESEND_TO ?? 'vbvwithnate@outlook.com'], replyTo: trimmedEmail, subject: `Verse by Verse contact form: ${trimmedName}`,