Updating smtp settings

This commit is contained in:
Finley Ghosh 2025-08-11 15:55:09 +10:00
parent dcb5186d89
commit 284a28d9f0

View file

@ -56,11 +56,17 @@ $host = $_SERVER['HTTP_HOST'];
));
*/
// SMTP settings for production
// Configure::write('smtp_settings', array(
// 'port' => '25',
// 'timeout' => '30',
// 'host' => '172.17.0.1'));
// SMTP settings for staging
Configure::write('smtp_settings', array(
'port' => '25',
'port' => '1025',
'timeout' => '30',
'host' => '172.17.0.1'));
'host' => 'mailpit'));
// Mailhog SMTP settings for local development