diff --git a/.env.example b/.env.example index a501a0f..2aaf9f9 100644 --- a/.env.example +++ b/.env.example @@ -13,4 +13,4 @@ RESEND_TO=vbvwithnate@outlook.com # "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 +RESEND_FROM=Verse by Verse with Nate diff --git a/server.js b/server.js index 0c966cf..c7d8447 100644 --- a/server.js +++ b/server.js @@ -114,7 +114,7 @@ app.post('/api/contact', contactRateLimit, async (req, res) => { const resend = new Resend(process.env.RESEND_API_KEY) const { error } = await resend.emails.send({ - from: process.env.RESEND_FROM ?? 'Verse by Verse ', + 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}`,