mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
fixing email.php.default, from should have email as key
This commit is contained in:
parent
8acd980895
commit
22029a1199
2 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ class EmailConfig {
|
|||
|
||||
public $smtp = array(
|
||||
'transport' => 'Smtp',
|
||||
'from' => array('My Site', 'site@localhost'),
|
||||
'from' => array('site@localhost' => 'My Site'),
|
||||
'host' => 'localhost',
|
||||
'port' => 25,
|
||||
'timeout' => 30,
|
||||
|
|
|
@ -48,7 +48,7 @@ class EmailConfig {
|
|||
|
||||
public $smtp = array(
|
||||
'transport' => 'Smtp',
|
||||
'from' => array('My Site', 'site@localhost'),
|
||||
'from' => array('site@localhost' => 'My Site'),
|
||||
'host' => 'localhost',
|
||||
'port' => 25,
|
||||
'timeout' => 30,
|
||||
|
|
Loading…
Reference in a new issue