29 lines
865 B
Plaintext
29 lines
865 B
Plaintext
#
|
|
# Backend configuration for contact form emails.
|
|
# Copy this file to `.env` and fill in your SMTP details.
|
|
#
|
|
|
|
# SMTP server host (e.g. smtp.gmail.com, smtp.mailgun.org, etc.)
|
|
SMTP_HOST=mail.sebvtl.com
|
|
|
|
# SMTP port (465 for SSL, 587 for TLS)
|
|
SMTP_PORT=465
|
|
|
|
# Use "true" if your provider requires SSL (port 465)
|
|
# Otherwise leave to "false" for TLS (port 587)
|
|
SMTP_SECURE=true
|
|
|
|
# SMTP credentials
|
|
SMTP_USER=contact@sebvtl.com
|
|
SMTP_PASS=Lightwave9.0**
|
|
|
|
# Optional: override the recipient (defaults to sebastien@octopusdesign.fr)
|
|
CONTACT_RECIPIENT=sebastien@octopusdesign.fr
|
|
|
|
# Optional: override the "from" address visible in the email client
|
|
CONTACT_FROM=no-reply@octopusdesign.fr
|
|
|
|
# Optional: add extra allowed origins for CORS (comma separated)
|
|
# Example: CORS_ALLOWED_ORIGINS=https://preprod.octopusdesign.fr,https://admin.octopusdesign.fr
|
|
CORS_ALLOWED_ORIGINS=
|