togethere.cloud/private_html/includes/smtp_config.php

13 lines
414 B
PHP

<?php
// Konfiguracja SMTP dla wysyłki emaili
return [
'host' => 'mail.togethere.cloud',
'port' => 587,
'username' => 'noreply@togethere.cloud', // ZMIEŃ NA PRAWDZIWY EMAIL
'password' => 'JakieHaslo', // ZMIEŃ NA PRAWDZIWE HASŁO
'encryption' => 'tls', // 'tls' dla portu 587, 'ssl' dla portu 465
'from_email' => 'noreply@togethere.cloud',
'from_name' => 'Wspólnie'
];