17 lines
361 B
Bash
17 lines
361 B
Bash
|
|
# Mailer Configuration
|
|
# Choose transport: 'smtp' or 'native' (for sendmail)
|
|
MAIL_TRANSPORT=smtp
|
|
|
|
# SMTP Server Settings
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_SECURE=tls
|
|
SMTP_USER=your_username
|
|
SMTP_PASS=your_password
|
|
|
|
# Email 'From' and 'Reply-To' Addresses
|
|
MAIL_TO=contact@avareed.design
|
|
MAIL_FROM=you@example.com
|
|
MAIL_FROM_NAME="Ava Reed Portfolio"
|