diff --git a/app/config/core.php b/app/config/core.php index 5ad5ea68..ad80091f 100644 --- a/app/config/core.php +++ b/app/config/core.php @@ -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