20 lines
675 B
Text
20 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',
|
||
|
|
];
|