24 lines
907 B
Bash
24 lines
907 B
Bash
# Copy this file to .env and fill in your real values.
|
|
# Never commit .env to version control.
|
|
|
|
# Resend API key for the contact form
|
|
# 1. Sign up free at https://resend.com
|
|
# 2. Go to API Keys and create a new key
|
|
# 3. Paste it below
|
|
RESEND_API_KEY=re_your_api_key_here
|
|
|
|
# Optional: use a separate key for Contacts/Segments if your main key is send-only
|
|
RESEND_CONTACTS_API_KEY=
|
|
|
|
# Email address that receives contact form submissions
|
|
RESEND_TO=vbvwithnate@outlook.com
|
|
|
|
# Optional: automatically add contact form submitters to a Resend Segment
|
|
# Create a Segment in Resend and paste its ID here if you want new contacts grouped.
|
|
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 <onboarding@resend.dev>
|