Files
robbis.space/kirby-baukasten-main/site/config/email.php
KirbyCMS Deploy 0a8c107828 Initial commit
2026-04-15 11:50:31 +00:00

14 lines
265 B
PHP

<?php
return [
'transport' => [
'type' => 'smtp',
'host' => env("KIRBY_MAIL_HOST"),
'port' => json_decode(env("KIRBY_MAIL_PORT")),
'security' => true,
'auth' => 'tls',
'username' => env("KIRBY_MAIL_USER"),
'password' => env("KIRBY_MAIL_PASS")
]
];