| 12345678910111213141516 |
- <?php
- /**
- * config/mail.php
- *
- * SMTP configuration for PHPMailer.
- * Fill in your mail server credentials here (or move to .env).
- */
- define('MAIL_HOST', 'smtp.example.com'); // SMTP server
- define('MAIL_PORT', 587); // 587 = STARTTLS, 465 = SSL
- define('MAIL_ENCRYPTION', 'tls'); // 'tls' or 'ssl'
- define('MAIL_USERNAME', 'hello@cropmonitor.com.au');
- define('MAIL_PASSWORD', ''); // Fill in SMTP password
- define('MAIL_FROM', 'hello@cropmonitor.com.au');
- define('MAIL_FROM_NAME', 'Crop Monitor');
- define('MAIL_TO', 'hello@cropmonitor.com.au'); // Inbox that receives contact submissions
|