13 lines
188 B
PHP
13 lines
188 B
PHP
<?php
|
|
/*
|
|
--- SMTP server settings ---
|
|
This is the only file that should be edited!
|
|
*/
|
|
|
|
$SMTP = [
|
|
'timeout' => '',
|
|
'hostname' => '',
|
|
'username' => '',
|
|
'password' => ''
|
|
];
|
|
?>
|