Updating smtp settings
This commit is contained in:
parent
dcb5186d89
commit
284a28d9f0
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue