* initial commit
This commit is contained in:
29
config/autoload/mail.local.dist.php
Normal file
29
config/autoload/mail.local.dist.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
use Zend\Mail\Transport\File;
|
||||
use Zend\Mail\Transport\FileOptions;
|
||||
|
||||
//use Zend\Mail\Transport\Smtp;
|
||||
//use Zend\Mail\Transport\SmtpOptions;
|
||||
|
||||
return [
|
||||
'mailer' => [
|
||||
// 'transportClass' => Smtp::class,
|
||||
// 'optionsClass' => SmtpOptions::class,
|
||||
// 'options' => [
|
||||
// 'name' => 'localhost',
|
||||
// 'host' => '127.0.0.1',
|
||||
// 'port' => 25,
|
||||
// 'connection_class' => 'plain',
|
||||
// 'connection_config' => [
|
||||
// 'username' => 'user',
|
||||
// 'password' => 'pass',
|
||||
// ],
|
||||
// ],
|
||||
'transportClass' => File::class,
|
||||
'optionsClass' => FileOptions::class,
|
||||
'options' => [
|
||||
'path' => 'data/mail/',
|
||||
],
|
||||
]
|
||||
];
|
||||
Reference in New Issue
Block a user