This commit is contained in:
nmemmert
2026-04-09 16:39:16 -04:00
parent d5f15486d8
commit 53408ad124
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,4 +20,4 @@ RESEND_SEGMENT_ID=
# "From" address shown on received emails. # "From" address shown on received emails.
# During testing you can leave this as-is (uses Resend's shared domain). # 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. # For production: verify your own domain at resend.com/domains and change this.
RESEND_FROM=Verse by Verse with Nate <onboarding@resend.dev> RESEND_FROM=Verse by Verse with Nate <hello@versebyversewithnate.us>
+1 -1
View File
@@ -155,7 +155,7 @@ app.post('/api/contact', contactRateLimit, async (req, res) => {
} }
const { error } = await resend.emails.send({ const { error } = await resend.emails.send({
from: process.env.RESEND_FROM ?? 'Verse by Verse with Nate <onboarding@resend.dev>', from: process.env.RESEND_FROM ?? 'Verse by Verse with Nate <hello@versebyversewithnate.us>',
to: [process.env.RESEND_TO ?? 'vbvwithnate@outlook.com'], to: [process.env.RESEND_TO ?? 'vbvwithnate@outlook.com'],
replyTo: trimmedEmail, replyTo: trimmedEmail,
subject: `Verse by Verse contact form: ${trimmedName}`, subject: `Verse by Verse contact form: ${trimmedName}`,