innhold/custom/smtp-config.php.example
Ruben c013c2cde3 Add contact form with spam protection
Add social media links to contact page

Move history content to dedicated page

Add SMTP configuration file

Update frontpage link styling
2025-11-04 22:19:58 +01:00

19 lines
675 B
Text

<?php
/**
* SMTP Configuration for PHPMailer.Lite
*
* Fill in your SMTP settings here.
* This file should be added to .gitignore to keep credentials private.
*/
return [
'enabled' => false, // Set to true when you have SMTP configured
'host' => 'smtp.example.com', // Your SMTP server
'port' => 587, // Common ports: 587 (TLS), 465 (SSL), 25 (unsecured)
'username' => 'your-email@example.com', // SMTP username
'password' => 'your-password', // SMTP password
'from_email' => 'kontaktskjema@stopplidelsen.no',
'from_name' => 'Stopp Lidelsen Kontaktskjema',
'to_email' => 'kontakt@stopplidelsen.no',
'to_name' => 'Stopp Lidelsen',
];